fieldset firefox overflow CSS fix

前端 未结 4 1336
一生所求
一生所求 2020-12-06 11:31

How can i set content to overflow in fieldset? It works in IE but not in FF.

Same functionality I can achieve with div element in both browsers.

Sample:

4条回答
  •  孤街浪徒
    2020-12-06 11:57

    you don't need to overflow the content! In IE(6), by default, the "fieldset" tag has no padding, in FF it has! That is why you have a different behavior!

    You can reset the padding (padding:0px;) of the fieldset but in this case, in FF, the label doesn't look fine! To fix that, you can reset the padding-bottom of the fieldset and apply a "margin-left:-12px" to the div inside the fieldset. However, that solves the problem with FF but generates an issue in IE!

    So, my suggestion is to use conditional CSS statements to apply to each browser the right rules of style!

提交回复
热议问题