Skip to content

Instantly share code, notes, and snippets.

@airen
Created August 8, 2014 14:15
Show Gist options
  • Save airen/cb443f69e4312980b1f6 to your computer and use it in GitHub Desktop.
Save airen/cb443f69e4312980b1f6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.3)
// Compass (v1.0.0.rc.1)
// ----
//Thanks:http://nicolasgallagher.com/micro-clearfix-hack/
@mixin clearfix() {
&:before,
&:after {
content: "";
display: table;
}
&:after {
clear: both;
}
}
//Usage:
.article {
@include clearfix();
}
.article:before, .article:after {
content: "";
display: table;
}
.article:after {
clear: both;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment