Sha256: b52d45fc3dba315185a0c469cd2db95872df6e78cac30c5f9bb9f2a86323bbe0
Contents?: true
Size: 525 Bytes
Versions: 55
Compression:
Stored size: 525 Bytes
Contents
// 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 { *zoom: 1; &:before, &:after { content: " "; display: table; } &:after { clear: both; } } // Acknowledgements // Micro clearfix: [Nicolas Gallagher](http://nicolasgallagher.com/micro-clearfix-hack/)
Version data entries
55 entries across 55 versions & 8 rubygems