leodutra
9/13/2013 - 7:57 PM

ClearFix CSS. Forces height on a container of "floater elements".

ClearFix CSS. Forces height on a container of "floater elements".

/* source: http://css-tricks.com/snippets/css/clear-fix/ */
 
.float-group:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}
* html .float-group             { zoom: 1; } /* IE6 */
*:first-child+html .float-group { zoom: 1; } /* IE7 */