Skip to content

Instantly share code, notes, and snippets.

@caingougou
Created May 5, 2011 03:19
Show Gist options
  • Select an option

  • Save caingougou/956480 to your computer and use it in GitHub Desktop.

Select an option

Save caingougou/956480 to your computer and use it in GitHub Desktop.
clearfix
/* old */
.clearfix:after {
visibility:hidden;
display:block;
font-size:0;
content:" ";
clear:both;
height:0;
}
.clearfix {
zoom:1;
}
/* new */
.cf:before, .cf:after {
content:"";
display:table;
}
.cf:after {
clear:both;
}
.cf {
zoom:1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment