欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

一个老外弄的Clearing floats(清除浮动的方法)

程序员文章站 2022-06-28 13:59:55
我常用的都是clear:both;方法,如    
我常用的都是clear:both;方法,如


<div style="clear:both">
   <div style="float:left"></div>
  <div style="float:right"></div>
</div>



今在planabc看到另外这种方法,特些记录下来。

div.container {
 border: 1px solid #000000;
}

div.left {
 width: 45%;
 float: left;
}

div.right {
 width: 45%;
 float: right;
}


层套关系:container的div包含left和right

最简单合理的清除浮动的方法(红色粗体部分):

div.container {
 border: 1px solid #000000;
 overflow: hidden;
 width: 100%;
}

兼容情况:ie6 ie7 ff macie等

来源地址:http://www.quirksmode.org/css/clearing.html

ps:不过在使用的过程貌似还有小的bug,淘宝的小马曾碰到过,具体的症状是,ie6中层套清除浮动的div,导致部分链接无法点击。