Skip to content

Instantly share code, notes, and snippets.

@DustinHigginbotham
Created August 30, 2013 21:17
Show Gist options
  • Select an option

  • Save DustinHigginbotham/6394369 to your computer and use it in GitHub Desktop.

Select an option

Save DustinHigginbotham/6394369 to your computer and use it in GitHub Desktop.
Clearfix Sass Mixin
@mixin clear {
zoom:1;
&:before, &:after {
content: "\0020";
display: block;
height: 0;
overflow: hidden;
}
&:after {
clear: both;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment