clearfix清除浮动
2016-05-06 本文已影响0人
slick的马甲无理取闹
精通CSS(第二版):
.clear:after {
content: ".";
height: 0;
visibility: none;
display: block;
clear: both;
}
bootstrap中清除浮动的方法:
.clearfix {
*zoom: 1;
}
.clearfix:before, .clearfix:after {
display: table;
line-height: 0;
content:"";
}
.clearfix:after {
clear: both;
}