vote up 0 vote down star

What is the best way to provide a caption for an HTML list? E.g

Fuit

  • Apple
  • Pear
  • Orange

How should the word "fruit" be handled, particularly if I want it to be semantically associated with the list itself?

flag

75% accept rate

3 Answers

vote up 3 vote down check

While there is no caption or heading element structuring your markup effectively can have the same affect. Here are some suggestions:

Nested List

<ul>
    <li>
        Fruit
        <ul>
            <li>Apple</li>
            <li>Pear</li>
            <li>Organge</li>
        </ul>
    </li>
</ul>


Heading Prior to List

<hX>Fruit</hX>
<ul>
    <li>Apple</li>
    <li>Pear</li>
    <li>Orange</li>
</ul>


Definition List

<dl>
  <dt>Fruit</dt>
  <dd>Apple</dd>
  <dd>Pear</dd>
  <dd>Orange</dd>
</dl>
link|flag
I'm going with this as my chosen answer as after doing some more research the Definition list will probably fill me needs here as there will be multiple lists. Styling will now be my next challenge. – Jon P Jul 17 at 6:30
Only the second option is semantically valid. – Alohci Jul 17 at 9:42
@alohci If there are going to be more definitions in the list what's wrong w/ a definition list or an unordered list? – ahsteele Jul 17 at 13:38
vote up 2 vote down

As far as I know, there are no provisions in current HTML specs for providing a caption for a list, as there are with tables. I'd stay with using either a classed paragraph, or a header tag for now.

<h3>Fruit</h3>
<ul>
    <li>Apple</li>
    <li>Pear</li>
    <li>Orange</li>
</ul>

In the future, when HTML5 gains wider adoption, you will be able to use the <legend> and <figure> tags to accomplish this slightly more semantically.

See this post on the W3C mailing list for more information.

link|flag
vote up 0 vote down

There is no caption-like tag for a list like a table has. So I'd just give it an <Hx> (x depending on your previously used headers).

link|flag

Your Answer

Get an OpenID
or

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