Sha256: 712ed4eb34279a33ea1b5ef1e3ff2f5a68a91022f7f9c62845619827f09fc00c

Contents?: true

Size: 538 Bytes

Versions: 1

Compression:

Stored size: 538 Bytes

Contents

// Modern micro clearfix provides an easy way to contain floats without adding additional markup.
//
// Example usage:
//
//    // Contain all floats within .wrapper
//    .wrapper {
//      @include clearfix;
//      .content,
//      .sidebar {
//        float : left;
//      }
//    }

@mixin clearfix {
  &:after {
    content:"";
    display:table;
    clear:both;
  }
}

// Acknowledgements
// Beat *that* clearfix: [Thierry Koblentz](http://www.css-101.org/articles/clearfix/latest-new-clearfix-so-far.php)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hanuman-0.4.0 _sass/bourbon/addons/_clearfix.scss