scss清除浮动

清除浮动:

%clearfix {
  *zoom: 1;
  &:before, &:after {
    content: " ";
    display: table;
  }
  &:after {
    clear: both;
  }
} 

使用方法:

.container-with-floated-children {
  @extend %clearfix;
} 

你可能感兴趣的:(css)