Skip to content

Instantly share code, notes, and snippets.

@dropofwill
Last active August 29, 2015 14:02
Show Gist options
  • Save dropofwill/d6a2fe104cba2b350607 to your computer and use it in GitHub Desktop.
Save dropofwill/d6a2fe104cba2b350607 to your computer and use it in GitHub Desktop.
My favorite clearfix technique, a la http://nicolasgallagher.com/micro-clearfix-hack/
/* IE 6> */
.cf {
*zoom: 1;
&:before,
&:after {
content: "";
display: table;
}
&:after {
clear: both;
}
}
/* IE 8 > */
.cf{
&:after{
content:"";
display:table;
clear:both;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment