I'm trying to do a layout with two top divs, and one below them. See here:
<div style="width: 49%; float: left; border: 1px solid">
<label>blabla</label>
</div>
<div style="width: 49%; float: left; border: 1px solid">
<label>blabla</label>
<br/>
<label>blabla</label>
</div>
<div style="width: 100%; float: left; border: 1px solid">
<label>blabla</label>
<label>blabla</label>
</div>
Problem is I would like the top left div (or right one) to resize to the same dimension as the other one, even if the number of elements are different. So basically to scale to the biggest one. Any suggestions?
Regards, Bogdan