WebAIM - Web Accessibility In Mind

E-mail List Archives

Re: Navigation lists and headers - best practise?

for

From: Austin, Darrel
Date: Aug 27, 2007 3:30PM


Whoa...this thread is going on over a year now. Made me go back and
reflect on some of the comments.

I'm being swayed by the H2 arguments, yet I still like the semantics of
using a DL list. Any thoughts on an implementation like this:

<dl>
<dt>
<h2>Section Navigation Title</h2>
</dt>
<dd>
<ul>
<li>link</li>
<li>link</li>
</ul>
</dd>
<dt>
<h2>Section Navigation Title</h2>
</dt>
<dd>
<ul>
<li>link</li>
<li>link</li>
</ul>
</dd>
</dl>

Redundant? Useful?

-Darrel