I need to make an ordered list with tabular content that renders something like this:

1. Winner         00:00
2. Runner up      00:00
3. Looser         00:00

Now, I've managed to do this using the following HTML:

<ol>
    <li><dl><dt>Winner</dt><dd>00:00</dd></dl></li>
    <li><dl><dt>Runner up</dt><dd>00:00</dd></dl></li>
    <li><dl><dt>Looser</dt><dd>00:00</dd></dl></li>
</ol>

and CSS:

dt {
    display: inline-block;
    width:   5em;
}
dd {
    display: inline-block;
}

which renders correctly in the latest Chrome, Safari and Firefox. I don't know about IE.

However, it doesn't feel right. Are there a more semantic approach to solving this problem using HTML and CSS only?

link|improve this question
what browser support is needed? – Joseph Marikle Nov 15 '11 at 3:23
Chrome, Safari, FF, Opera and IE. – Thor Chr. Jacobsen Nov 15 '11 at 5:56
feedback

2 Answers

up vote 0 down vote accepted

As far as CSS semantics, this is definitely not a good thing to do. (for one thing I can't seem to get it to work in chrome). Because this is tabular data, it should be placed in a table. As for automatic incrementation, you could use the css count attribute:

Demo

table{counter-reset:number;}

table tr td:first-child:before
{
    counter-increment:number;
    content:counter(number) ". ";
}
link|improve this answer
That would eliminate order as conveyed by HTML, you may as well just use a dl then. If the order is relevant, the numbers belong in cells like the rest of the data. – reisio Nov 15 '11 at 3:37
@reisio The order is irrelevant per the example provided by the OP, which uses an ordered list... – Joseph Marikle Nov 15 '11 at 3:42
Order -ed lists convey order. As I said, if it's relevant you need to include HTML (not CSS) for it, and if not you don't need a table (since simple pairs are covered fine by a dl). – reisio Nov 15 '11 at 3:45
I had no idea about automatic numbering of table rows through CSS and have been searching myself blind on ordered lists. Thank you! – Thor Chr. Jacobsen Nov 15 '11 at 5:55
Again, you need to inlude the numbers in cells if they are relevant (if the order matters / is of significance), otherwise you can use a counter with a dl only. – reisio Nov 15 '11 at 16:57
show 12 more comments
feedback

The table element.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.