tags:

views:

514

answers:

2

i've got 4 columns in one row and depending on how much information i put in each of them they will have different heights. you can see that if you put a background color on them.

how do i give the other columns the height of the column with the largest height?

+1  A: 

You can use jQuery to do this. http://www.cssnewbie.com/equal-height-columns-with-jquery/

Alternaively for a CSS only approach you can make it look like they are the same height, by wrapping all columns in a div, and then applying a single background image, with 4 blocks of colour that match the column widths.

This wrapper div will expand to be the size of the largest column, and will give the impression of 4 equal sized cols.

Matt
+1  A: 

Well, I don't know if this works for 960, but in Blueprint you can get that by applying the following style to the columns:

padding-bottom : 20000px;
margin-bottom : -20000px;
overflow:hidden;
Alextronic
no it didnt. they got all 20000px of heights...
weng
Hmmm... Does it happen also if, without removing the style proposed above, you try wrapping the columns into a <div>? You could then try applying a .clearfix class (http://www.webtoolkit.info/css-clearfix.html) Just guessing.
Alextronic