I assume that you need two columns with blocks of different heights.
Then you need to put one column to the left and the second to the right:
Like this:
.member { position: relative; width: 422px; margin: 0px 10px 10px 0px; height: auto; } .fl_left { float: left; clear: left; } .fl_right { float: right; clear: right; }
HTML:
<div id="left"> <div class="fl_left"> <div class="member"></div> <div class="member"></div> </div> <div class="fl_right"> <div class="member"></div> <div class="member"></div> </div> </div>
source share