html - How to use divs instead of tables -
i trying create following table layout, want use div instead of table: ------------------ | | | | cell1 | cell2 | | | | | |--------| | | | | | cell3 | | | | ------------------ i want height of cells set content (i.e. no height: style) i have tried using float:left on cell1, can't seem cells 2 , 3 behave. edit js fiddle here: http://jsfiddle.net/utzr3/ html: <div class="list-row"> <div class="list-left">cell1 </div> <div class="list-right"> <div class="list-title">cell2</div> <div class="list-filters">cell3 </div> </div> </div> <div class="list-row"> <div class="list-left">cell1 </div> <div class="list-right"> <div class="list-title">cell2</div> <