Skip to content

Commit

Permalink
Add clearfix utility
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank committed Feb 11, 2012
1 parent 980035c commit ac172bc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions app/assets/stylesheets/addons/_utilities.scss
@@ -0,0 +1,29 @@
// Micro clearfix provides an easy way to contain floats without adding additional markup
//
// Example usage:
//
// // Contain all floats within .wrapper
// .wrapper {
// @include clear;
// .content,
// .sidebar {
// float : left;
// }
// }

@mixin clear {
&:before,
&:after {
content : "";
display : table;
}
&:after {
clear : both;
}
zoom : 1;
}


// Acknowledgements
//
// Micro clearfix: [Nicolas Gallagher](http://nicolasgallagher.com/micro-clearfix-hack/)

0 comments on commit ac172bc

Please sign in to comment.