Are you looking to have a 2 column (or 3 column) effect, where each column has the same height - i.e. each div will expand to the size of the tallest one?
If so, you can use floated div's for the columns. Then create a cleaner div, afterwards.
.cleaner {
clear:both;
height:1px;
font-size:1px;
border:none;
margin:0;
padding:0;
background:transparent;
}
|