I'm looking at a simple web page layout but I want to fix the 3 centred columns to an absolute maximum height.
I've created this FIDDLE, which is missing the images, but as you can see the first column is longer than the others as there more text in it.
This appears to be the css that is being used, but I'm not sure what to change.
.home_section_left{
width:270px;
height:auto;
float:left;
margin:0 14px 0 14px;
padding:0 10px 20px 10px;
background:url(images/home_block_bg.gif) no-repeat center bottom;
}
How do I fix the length of the columns regardless of the length of data/text entered ?