Skip to content

Instantly share code, notes, and snippets.

@illarionvk
Created April 4, 2014 14:17
Show Gist options
  • Save illarionvk/9975561 to your computer and use it in GitHub Desktop.
Save illarionvk/9975561 to your computer and use it in GitHub Desktop.
Clearfix mixin to do clear floats
@mixin clearfix {
*zoom:1;
&:before, &:after { content: " "; display: table; }
&:after { clear: both; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment