标签:
/* new clearfix */
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
You may combine the hack for IE6 and IE7:
.clearfix{*zoom:1;}
-----------------------------------------------------
If you don‘t want additional tags, use bellow:
.group:after,
#content:after,
#sidebar:after,
#some .other .thing:after
{
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
zoom:1;
}
标签:
原文地址:http://www.cnblogs.com/ipup/p/4351421.html