两种clearfix的写法
feilong.org 修订于2010-12-26 06:40:53 257 次浏览一般用clear来清除浮动的影响。使用的时候,套用clearf样式即可。
写法一:
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
写法二
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
.clearfix { display: inline-table; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */
更新网址:https://feilong.org/two-clearfix
最初发布:20101226 06:40:53 feilong.org 于广州
加入收藏夹,查看更方便。
所在分类: 网站开发