tools.clearfix
# Clearfix
The aleutcss clearfix
module contains a useful mixin for adding clearfix to your classes.
Install using npm:
$ npm install --save-dev aleut.tools-clearfix
Usage
Basic usage of the mixins in a SCSS-file:
.foo {
@include clearfix;
}
This yields:
.foo::after {
content: "";
display: table;
clear: both;
}