【css】清除浮动有哪些方式

2021-05-31  本文已影响0人  Adder

添加伪类,空标签clear: both

.clearfix::after {
  content: '';
  clear: both;
  display: block;
}
.clearfix {
  zoom: 1 // IE问题兼容
}

position 设置为非 static 和relative

脱离文档流

上一篇下一篇

猜你喜欢

热点阅读