Skip to content

Instantly share code, notes, and snippets.

@ksafranski
Created June 21, 2012 13:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksafranski/2965635 to your computer and use it in GitHub Desktop.
Save ksafranski/2965635 to your computer and use it in GitHub Desktop.
Easy self-clear for floats
/* clearing floats normal browsers */
.group:after {
content: "";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
/* clearing floats IE6 */
* html .group { height: 1px; }
/* clearing floats IE7 */
*:first-child+html .group { min-height: 1px; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment