如何設置內容溢出fieldset? 它適用於IE,但不適用於FF。fieldset firefox overflow CSS修復
我可以在兩個瀏覽器中使用div元素實現相同的功能。
樣品:
<fieldset style="border:thin solid #990033;">
<legend>test</legend>
<div style="background-color:#0033FF; height: 30px; width:800px;" >FIXED DIV</div>
</fieldset>
<p> </p>
<div style="border:1px solid #999999; padding:0 8px 8px 8px;">
<label style="background-color:#FFFFFF; padding:0 5px; position:relative; top:-10px;" >test</label>
<div style="background-color:#0033FF; height: 30px; width:800px;" >FIXED DIV</div>
</div>
我粘貼到這個HTML文檔和兩個框在Firefox(3.5)看上去是一樣的。在Internet Explorer中他們有不同的內部填充。 一個簡單的CSS技巧就是在沒有填充和無邊距的情況下啓動所有功能: * {padding:0;保證金:0} 只需應用您需要的,每個瀏覽器都會在元素上放置不同的默認填充和邊距。 – MalphasWats