10 09/2014

best clear float method

最后更新: Wed Sep 10 2014 12:29:11 GMT+0800

目前最好的办法 micro clearfix hack

.cf:before,
.cf:after {
    content: " "; /* 解决 opera bug */
    display: table; /* 子元素有 margin-top 的情况下,block 不行 */
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1; /*ie67*/
}