/*-------------------------------------------------------------- # Clearfix after element # example: @include clearfix(); --------------------------------------------------------------*/ @mixin clearfix() { &:before, &:after { content: " "; // 1 display: table; // 2 } &:after { clear: both; } }