清除浮动

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

为什么要加display: block, 因为clear属性只对块级元素有效

你可能感兴趣的:(清除浮动)