Hi
I've a several columns in css, with float:left property to align them horizontally. But as it float in the left side, i can't center all the divs.
So i found that if i wrap my columns with another div with display:table property, all works perfectly... but not in IE7 (idd, this property is not supported -.-).
does anybody has a hack or trick for this ?
Here is my code :
<div style="display:table">
<div style="float:left">A column</div>
<div style="float:left">A column</div>
<div style="float:left">A column</div>
<div style="float:left">A column</div>
</div>