奇怪的css溢出问题

时间:2012-09-30 21:05:02

标签: html css firefox twitter-bootstrap overflow

  

可能重复:
  Strange page bug on firefox

我在项目中使用ChoosenTwitter BootstrapHere is jsfiddle 尝试在Firefox上打开它(在Chrome上它工作得很好)按下第一个手风琴项目开启器。它将关闭内部。然后再次按下它打开:你会看到它只显示文本框,而不是内部div。

以下是我在Firefox上按下3次后看到的屏幕截图

enter image description here

以下是它应该如何(在Chrome上)

enter image description here

我错过了什么?

1 个答案:

答案 0 :(得分:1)

Firefox中的有趣行为!但如果你采取以下线路,它工作正常。

 .collapse.in { overflow: visible; }

如果您默认情况下未设置任何溢出,则浏览器会将其设置为可见,因此无需显式设置。请参阅此处http://css-tricks.com/the-css-overflow-property/