在IE中,只有指定该DIV的CLASS为FLOAT:left 才会有FLOAT属性 而在FF中,

第一个指定后 其后的div也随着平移,

所以可以在同级的float加上

<div class="clear" style="clear:both;"></div>

CSS中 height: 19px !important; height: 21px;

在IE是不认important的,如果属性重复,默认截取最后一个。

而在FF中important是优先执行的。

div 设置 margin-left, margin-right 为 auto 时 IE 不会居中,但FF可以.