站长资源网络编程

CSS清除浮动方法汇总

整理:jimmy2024/10/26浏览2
简介清除浮动//IE浏览器.clearfloat{zoom:1}//其他浏览器.clearfloat ; after{display:bloak;clean:both;content:"";visibility: hidden;height:0}

清除浮动

//IE浏览器

.clearfloat{
 zoom:1
}

//其他浏览器
.clearfloat ; after{
 display:bloak;
 clean:both;
 content:"";
 visibility: hidden;
 height:0
}