hippie/mixins/_clearflow.scss
Stephan Hagedorn f97f76ee3d New stuff
2017-08-22 16:50:09 +02:00

25 lines
469 B
SCSS

@charset "UTF-8";
// Provides an easy way to include a clearflow for containing floats.
//
// @link http://cssmojo.com/latest_new_clearfix_so_far/
//
// @example scss - Usage
// .element {
// @include clearflow;
// }
//
// @example css - CSS Output
// .element::after {
// content: "";
// clear: both;
// display: table;
// }
@mixin clearflow {
&::after {
content: "";
clear: both;
display: table;
}
}