Skip to content

Instantly share code, notes, and snippets.

@rzzo
Created July 16, 2015 18:02
Show Gist options
  • Save rzzo/e5db0c4d0cbaf63dbeec to your computer and use it in GitHub Desktop.
Save rzzo/e5db0c4d0cbaf63dbeec to your computer and use it in GitHub Desktop.
Scss mixin - clearfix
//=== Clearfix
//=== Use @extend %clearfix;
%clearfix {
&:after {
content: "";
display: table;
clear: both;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment