清除浮动
@mixin clearfix {
$selector: &;
@at-root {
#{$selector}::before,
#{$selector}::after {
display: table;
content: "";
}
#{$selector}::after {
clear: both;
}
}
}
.row {
@include clearfix;
}
原创小于 1 分钟