FIREFOX和IE中的margin屬性
2015.09.10 | 517閱讀 | 0條評(píng)論 | 未命名
margin在firefox下不起作用的解決方法一共有兩種,示例代碼如下:
<div style="width:800px; height:auto; background-color:#00FF00">
<div style="margin-top:15px;">在IE下</div>
</div>
解決方法一:是在父級(jí)容器div上加overflow:hidden 或overflow:auto
<div style="width:800px; height:auto; background-color:#00FF00;overflow:auto">
<div style="margin-top:15px;">在firefox下</div>
</div>
解決方法二:是在子級(jí)div中加上float參數(shù)
例如float:left或者float:right根據(jù)實(shí)際情況而定
<div style="width:800px; height:auto; background-color:#00FF00">
<div style="margin-top:15px;float:left;">在firefox下</div>
</div>
發(fā)表評(píng)論