IE6下浮动元素撑不开父元素
<style>
.box{border:1px solid #999;overflow:hidden;display:block;_zoom:1;}
.fr{float:right;height:200px;background:#eee;}
.fl{float:left;height:200px;background:#eee;}
</style>
<divclass="box">
<divclass="fr">
right
</div>
<divclass="fl">
left
</div>
</div>
子元素 fr 和 fl 为浮动,IE6下撑不开父元素,解决方法,
在父元素加入 overflow:hidden; display:block; _zoom:1;
浙公网安备 33010602011771号