Latest browsers. – José Luis 8 mins
ago
Cool. In that case, I'm going to suggest display: table-cell and friends.
It won't work in IE7, but that won't be a problem if you only care about the latest browsers.
I don't particularly like the "divitus", but there's little that can be done about it.
See: http://jsfiddle.net/9Ae9e/4/
#wrapper { border: solid 1px #0f0; display: table }
#wrapper > div { border: solid 1px #00f; display: table-row }
#wrapper > div > div { border: solid 1px #f00; display: table-cell }
<div id="wrapper">
<div>
<div>l1</div>
<div>r1</div>
</div>
<div>
<div></div>
<div>r2</div>
</div>
..
</div>
Cells will be fixed width and height
In that case, you can also consider something simpler, and closer to what you originally had:
See: http://jsfiddle.net/9Ae9e/5/
#wrapper { border: solid 1px #0f0; background: #ccc; float: left }
#left { border: solid 1px #00f; float: left }
#right { border: solid 1px #f00; float: left }
#left > div, #right > div {
border: solid 1px #000;
width: 50px;
height: 50px
}
<div id="wrapper">
<div id="left">
<div>l1</div>
<div></div>
..
</div>
<div id="right">
<div>r1</div>
<div>r2</div>
..
</div>
</div>
A third idea, specifically catering to:
I was trying to avoid the <div></div>
thingy
You can omit empty cells now.
Personally, I'd rather just put up with having empty divs, because this is a little complicated.
I commented out rather than remove the "empty cells".
See: http://jsfiddle.net/9Ae9e/7/
CSS:
#wrapper {
border: solid 1px #0f0;
background: #ccc;
float: left;
width: 100px
}
#wrapper > div {
outline: solid 1px #000;
width: 50px;
height: 50px
}
.l {
float: left
}
.r {
float: right;
}
.r + .r + .l {
clear: right;
background: red
}
.l + .l {
clear: left;
background: blue
}
.r + .r + .r {
clear: right;
background: #666
}
Reasonably extensive HTML test case:
<div id="wrapper">
<div class="l">l1</div>
<div class="r">r1</div>
<!--<div class="l">l2</div>-->
<div class="r">r2</div>
<div class="l">l3</div>
<div class="r">r3</div>
<div class="l">l4</div>
<!--<div class="r">r4</div>-->
<div class="l">l5</div>
<div class="r">r5</div>
<!--<div class="l">l6</div>-->
<div class="r">r6</div>
<!--<div class="l">l7</div>-->
<div class="r">r7</div>
<div class="l">l8</div>
<div class="r">r8</div>
<div class="l">l9</div>
<!--<div class="r">r9</div>-->
<div class="l">l10</div>
<!--<div class="r">r10</div>-->
<div class="l">l11</div>
<div class="r">r11</div>
</div>