trevoristall
11/26/2013 - 5:38 PM

Clearfix hack using pseudo elements

Clearfix hack using pseudo elements

@mixin clearfix() {
    &:before,
    &:after {
        content: "";
        display: table;
    }
    &:after {
        clear: both;
    }
}

USEAGE:

.article {
     @include clearfix();
}