Sha256: 47cd864aabf22ab476def90c0f038d21cb9b4a64baf7fdb62d930e9742e3067c
Contents?: true
Size: 515 Bytes
Versions: 349
Compression:
Stored size: 515 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
349 entries across 338 versions & 10 rubygems