@mixin clearfix()
Description
A small, unobtrusive clearfix for float containers.
Example
scss
body {
@include clearfix;
}css compiled
body::after {
clear: both;
content: ' ';
display: block;
}
A small, unobtrusive clearfix for float containers.
body {
@include clearfix;
}body::after {
clear: both;
content: ' ';
display: block;
}