Chris W. Parker wrote:

What is the recommended way to mark up a list that has a title?

FWIW, XHTML 2 has the exact feature you're looking for, but since I don't recall the exact syntax, the standard isn't even a standard yet, and there's no browser support yet, I'll leave it to you to look up the details.With what's available, two ideas come to mind (besides those already given by others):

<div>
   <hn>title</hn>
   <ul>
      <li></li>
      <li></li>
      <li></li>
   </ul>
</div>

or

<dl>
   <dt>title</dt>
   <dd>
       <ul>
          <li></li>
          <li></li>
          <li></li>
       </ul>
   </dd>
</dl>
******************************************************
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************

Reply via email to