清除浮动

网上抄下来很久才发表,忘了出处。


html body div.clear,html body span.clear
{
	background:none;
	border:0;
	clear:both;
	float:none;
	font-size:0;
	margin:0;
	padding:0;
	overflow:hidden;
	visibility:hidden;
	width:0;
	height:0;
}

使用方法:


.clearfix:after
{
	content:"020";
	display:block;
	height:0;
	clear:both;
}
.clearfix
{
	zoom:1;   /*为了兼容IE6/IE7*/
}

使用方法:



你可能感兴趣的:(CSS)