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参数

例如float:left或者float:right根据实际情况而定

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