插件窝 干货文章 CSS清除浮动方法汇总

CSS清除浮动方法汇总

class clearfloat div pre 733    来源:    2024-10-30

清除浮动

//IE浏览器

.clearfloat{
 zoom:1
}

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