Clearfix hack using pseudo elements
@mixin clearfix() { &:before, &:after { content: ""; display: table; } &:after { clear: both; } } USEAGE: .article { @include clearfix(); }