Skip to content

Instantly share code, notes, and snippets.

@fethica
Created July 18, 2013 04:04
Show Gist options
  • Save fethica/6026644 to your computer and use it in GitHub Desktop.
Save fethica/6026644 to your computer and use it in GitHub Desktop.
Clear floats with Sass
.group {
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