站内搜索:
首页 >> 前端 >> 内容
如何Css清除浮动

时间:2017/4/24 9:49:22

如何Css清除浮动

清除浮动
 //IE浏览器

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

  • 上一篇:jQuery之上卷下拉效果
  • 下一篇:js中的值传递和引用传递
  • 返回顶部