Skip to content

Instantly share code, notes, and snippets.

@dg1234uk
Last active April 3, 2016 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dg1234uk/2593b0cd2e53ecad7b0a to your computer and use it in GitHub Desktop.
Save dg1234uk/2593b0cd2e53ecad7b0a to your computer and use it in GitHub Desktop.
CSS: Clear Fix
/* http://css-tricks.com/snippets/css/clear-fix/ */
.group:after {
visibility: hidden;
display: block;
content: "";
clear: both;
height: 0;
}
* html .group { zoom: 1; } /* IE6 */
*:first-child+html .group { zoom: 1; } /* IE7 */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment