I want to align my stuff as:
┌────┬─────────────────────────────────┐
│ No │ Some possible long content │
│ ├─────────────────────────────────┤
│ │ Not so long stuff │
└────┴─────────────────────────────────┘
Using tables would be like 5 minutes using rowspan=2 but using divs I don't know where to start. I think divs should should be used since this is not tabular data. Is just a way of layout a counter, a possible lone title and its subtitle (not that long):
<div id="container">
<div class="div1">No</div>
<div class="div2">Some possible long content</div>
<div class="div3">Not so long stuff</div>
</div>
1 width is constant but its height should be the sum of 2 and 3 height.
3 always contain one line of code but 2 might contain more than 1 line.
Any help is appreciated
