如何清除浮动?

59 阅读1分钟

方法一,给父元素加上 .clearfix

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

方法二,给父元素加上 overflow:hidden。(BFC)