美文网首页
CSS 父级伪类清除浮动

CSS 父级伪类清除浮动

作者: yangoct | 来源:发表于2020-04-13 10:29 被阅读0次
.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;
}

相关文章

网友评论

      本文标题:CSS 父级伪类清除浮动

      本文链接:https://www.haomeiwen.com/subject/lvzwmhtx.html