Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active August 29, 2015 14:08
Show Gist options
  • Save Kcko/ef1ab294a35d3bf3e19f to your computer and use it in GitHub Desktop.
Save Kcko/ef1ab294a35d3bf3e19f to your computer and use it in GitHub Desktop.
Clearfix snippet
%clearfix {
*zoom: 1;
&:before, &:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
}
.container-with-floated-children {
@extend %clearfix;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment