css清除浮动写法推荐

浏览:1677 发布日期:2012/12/25 分类:系统代码 关键字: 清除浮动
用来清除内部浮动的好方法,有效减少空标签
.cf:before, .cf:after { content: ""; display: table; }
.cf:after { clear: both; }
.cf { zoom: 1; }
用法:<div class="cf">
<div style="float:left;"></div>
<div style="float:right;"></div>
</div>
评论( 相关
后面还有条评论,点击查看>>