Prefiero este método, los flotadores no son compatibles con versiones anteriores de IE (¿en serio? ...)
.column-left{ position:absolute; left: 0px; width: 33.3%; background: red; }
.column-right{position:absolute; left:66.6%; width: 33.3%; background: green; }
.column-center{ position:absolute; left:33.3%; width: 33.3%; background: yellow; }
ACTUALIZADO: Por supuesto, para usar esta técnica y debido al posicionamiento absoluto, debe encerrar los divs en un contenedor y realizar un procesamiento posterior para definir la altura de if, algo como esto:
jQuery(document).ready(function(){
jQuery('.main').height( Math.max (
jQuery('.column-left').height(),
jQuery('.column-right').height(),
jQuery('.column-center').height())
);
});
No es lo más asombroso del mundo, pero al menos no se rompe con los IE más antiguos.