IE 双边距Bug

当元素浮动时,IE6会错误的把浮动方向的margin值双倍计算。Steve Clason给出了解决方法:给元素添加display:inline;

/*IE6下将产生双倍边距*/
.floatedEl {float:left; margin-left:100px;}
 
/*修正*/
.floatedEl {float:left; margin-left:100px; display:inline;}
posted @ 2011-03-07 14:58  oneroundseven  阅读(302)  评论(0编辑  收藏  举报