搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

icant open the buttonswith (+) in this web site https://www.fmed.uba.ar/departamentos_y_catedras/departamento-de-patologia/patologia-i-informacion-para-alumnos

  • 7 个回答
  • 1 人有此问题
  • 12 次查看
  • 最后回复者为 Omar Hugo

more options

in other browsers I can open the browser buttons that contain (+), but the firefox browser does not open them

in other browsers I can open the browser buttons that contain (+), but the firefox browser does not open them
已附加屏幕截图

被采纳的解决方案

I'm getting this issue as well on the website.

This looks like a problem with this CSS rules that set the max-height to a property value (fit-content) that Firefox doesn't support. Firefox appears to support only the '-moz' prefixed version (-moz-fit-content).


  • .tab input:checked ~ .tab-content{max-height:fit-content;}

Search for ":checked":

Changing this rule to to max-height: -moz-fit-content or max-height: unset; makes this work in Firefox.

  • .tab input:checked ~ .tab-content{max-height:unset;}

You can contact the website and ask them to look into this.

A possible JavaScript bookmarklet that you can use for now:

javascript:(function(){var sS='.tab input:checked ~ .tab-content{max-height:-moz-fit-content;}',nS=document.createElement('style');nS.setAttribute('type','text/css');nS.innerHTML=unescape(sS);document.querySelector('head,body').appendChild(nS);})();

You can create a new bookmark and paste the full JavaScript code in its Location field.

定位到答案原位置 👍 0

所有回复 (7)

more options

选择的解决方案

I'm getting this issue as well on the website.

This looks like a problem with this CSS rules that set the max-height to a property value (fit-content) that Firefox doesn't support. Firefox appears to support only the '-moz' prefixed version (-moz-fit-content).


  • .tab input:checked ~ .tab-content{max-height:fit-content;}

Search for ":checked":

Changing this rule to to max-height: -moz-fit-content or max-height: unset; makes this work in Firefox.

  • .tab input:checked ~ .tab-content{max-height:unset;}

You can contact the website and ask them to look into this.

A possible JavaScript bookmarklet that you can use for now:

javascript:(function(){var sS='.tab input:checked ~ .tab-content{max-height:-moz-fit-content;}',nS=document.createElement('style');nS.setAttribute('type','text/css');nS.innerHTML=unescape(sS);document.querySelector('head,body').appendChild(nS);})();

You can create a new bookmark and paste the full JavaScript code in its Location field.

由cor-el于修改

more options

i diidnt understand

more options

This is a problem with the website in Firefox. It uses a CSS rule to unhide content when you click a plus icon. This specific CSS rule uses a CSS property value for max-height that doesn't work with Firefox, so nothing seems to be happening.

A workaround is to create a new bookmark on the Bookmarks Toolbar via the right-click context menu. Give it a suitable name like UBA.AR, so you know it is about this website. In the location field where you would normally enter the URL of the website you can paste this JavaScript code:

javascript:(function(){var sS='.tab input:checked ~ .tab-content{max-height:-moz-fit-content;}',nS=document.createElement('style');nS.setAttribute('type','text/css');nS.innerHTML=unescape(sS);document.querySelector('head,body').appendChild(nS);})();

If you open this uba.ar page in a tab and invoke the bookmarklet by clicking the button on the Bookmarks Toolbar then the plus should work.

more options

ohhh man wtf its works !!! thankss I didnt understand nothing that i did, but i did what u tell me ! Thanksss

more options

it is rare, but sometimes I have the same problem on hotel websites and some banks websites, should I do the same?

more options

All website use different code and need their own workaround if this is even possible.

In some cases clearing cache and cookies is sufficient. In other cases Tracking Protection in Firefox (shield icon on location bar) or content blocking extensions is causing issues. If there is a problem with the HTML code like in this case then best is to ask advice at a forum unless you are experienced enough to use the Inspector, but even then there are two possibilities, either CSS code is used that you can possibly override or JavaScript is used and in that case it might not be possible to fix this. Every case is unique (different) and needs their own approach.

more options

thanks"!!!!!