Skip to content

Instantly share code, notes, and snippets.

@brigleb
Created July 6, 2014 05:24
Show Gist options
  • Save brigleb/c3df1de4c684155625e4 to your computer and use it in GitHub Desktop.
Save brigleb/c3df1de4c684155625e4 to your computer and use it in GitHub Desktop.
SASS clearfix mixin
@mixin clearfix {
display: inline-block;
&:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
* html & { height: 1px }
}
// Then just use `@include clearfix;` in a rule.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment