CSS 父级伪类清除浮动

2020-04-13  本文已影响0人  yangoct
.clearfix:after {
  content: "";
  display: block;
  hight: 0;
  visibility: hidden;
  clear: both;
}
.clearfix {
  *zoom: 1; //IE 6,7 清除浮动
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear:both;
}
.clearfix {
  *zoom: 1;
}
上一篇 下一篇

猜你喜欢

热点阅读