return to my homepage
December 6th, 2011

Clearfix fix

To eliminate over reliance on the class=”clearfix” apply:

.container { overflow: hidden; }

This works for all browsers except IE6, where all you need to do is enable hasLayout (zoom being my preferred method):

.container { zoom: 1; }