万能清除浮动float

133 阅读1分钟
.clearfloat::after{
  content: '';  //可以是看不见的空格/别的内容
  display: block;
  height: 0;
  clear: both;  //清除浮动
 }
 .clearfloat{
  zoom:1;  //为了IE6和IE7浏览器
 }