一区二区国产精品,日本在线一级,免费一级毛片免费播放,aaa大片

龍巖易富通網(wǎng)絡(luò)科技有限公司

龍巖小程序開發(fā),龍巖分銷系統(tǒng)

FIREFOX和IE中的margin屬性

2015.09.10 | 440閱讀 | 0條評論 | 未命名

margin在firefox下不起作用的解決方法一共有兩種,示例代碼如下:

<div style="width:800px; height:auto; background-color:#00FF00"> 
<div style="margin-top:15px;">在IE下</div> 
</div>

解決方法一:是在父級容器div上加overflow:hidden 或overflow:auto

<div style="width:800px; height:auto; background-color:#00FF00;overflow:auto"> 
<div style="margin-top:15px;">在firefox下</div> 
</div>

解決方法二:是在子級div中加上float參數(shù)

例如float:left或者float:right根據(jù)實際情況而定

<div style="width:800px; height:auto; background-color:#00FF00"> 
<div style="margin-top:15px;float:left;">在firefox下</div> 
</div>

贊 (

發(fā)表評論