Self-clearing Floats


.clearfix { /* for IE */
	zoom:1
}
.clearfix:after { /* for Others */
    clear: both; 
    content: "."; 
    display: block; 
    height: 0; 
    visibility: hidden;
}

For Example

Without Fix

With Fix

by Nate Koechley for http://nate.koechley.com/dev/lib/

Last Updated: 2006.10.12