首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

overflow清除浮动的有关问题

2012-04-02 
overflow清除浮动的问题HTML codediv stylebackground:blue overflow:hiddendiv stylewidth:100

overflow清除浮动的问题

HTML code
<div style="background:blue; overflow:hidden;">    <div style="width:100px; height:100px; background:red; float:left;"></div></div>


一直没想明白为什么使用overflow:hidden可以清除浮动呢?这是什么原理啊?

另外这种方法是不是在IE9里不行了?我刚才试了下,不行。但在火狐里还可以。

[解决办法]
没发觉能清除
[解决办法]
<div style="background:blue; overflow:hidden;height:1%">
<div style="width:100px; height:100px; background:red; float:left;"></div>
</div>
[解决办法]
HTML code
<div style="background:#06F; overflow:hidden;">        <div style="height:50px; width:100px; float:left; background:#F00;"></div>        <div style="height:100px; width:100px; background:#F0F;"></div>    </div> 

热点排行