Skip to content

Instantly share code, notes, and snippets.

@jbrz0
Created April 25, 2016 06:38
Show Gist options
  • Save jbrz0/a6f0f6a1d94a584ee8797c145ff3679c to your computer and use it in GitHub Desktop.
Save jbrz0/a6f0f6a1d94a584ee8797c145ff3679c to your computer and use it in GitHub Desktop.
Sass mixin for quickly applying clearfix
// Clearfix mixin
%clearfix {
*zoom: 1;
&:before, &:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
}
// Usage
.container-with-floated-children {
@extend %clearfix;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment