Skip to content

Instantly share code, notes, and snippets.

@chrisblackwell
Created October 23, 2012 13:01
Show Gist options
  • Save chrisblackwell/3938602 to your computer and use it in GitHub Desktop.
Save chrisblackwell/3938602 to your computer and use it in GitHub Desktop.
SASS Float Clearing
@mixin clear() {
&: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