vote up 0 vote down star

Is this the right way to do a nested navigation?

 <dl>
  <dt>Struktur</dt>
  <dd>
   <ul id="structure">
	<li><a href="/module/structure/add">Hinzufügen</a></li>
	<li><a href="/module/structure/index">Auflisten</a></li>
   </ul>
  </dd>

  <dt>Nachrichten</dt>
  <dd>
   <ul id="messages">
	<li><a href="/module/messages/add">Schreiben</a></li>
	<li><a href="/module/messages/directory">Ordner</a></li>
	<li><a href="/module/messages/index">Auflisten</a></li>
   </ul>
  </dd>
  </dl>
flag

1  
That depends on what do you mean by "right way". – n1313 Sep 7 at 7:48
I mean do i use the right elements, is it correctly 'marked'? – chrsk Sep 7 at 7:54

2 Answers

vote up 5 vote down check

I agree with n1313, it really depends what you mean by "right way".

If you do want a nit-picky answer: Strictly speaking, "Hinzufügen" and "Auflisten" are not the definition of "Struktur", so using a <dl> list to structure those elements is probably not The Right Way™. A simple nested <ul> list might be better.

<ul>
    <li>
        <div class="parent">Struktur</div>
        <ul>
            <li>
                ...
link|flag
Yeah, I agree with this answer. A unordered list, is the most common way of creating a menu. – Kim Andersen Sep 7 at 7:59
Thanks, thats what i asked :) – chrsk Sep 7 at 8:07
vote up 0 vote down

semantically, i dont think using a dt tag is correct. use a h2 or h3 tag instead.

<h2>Nachrichten</h2>
<ul id="messages">
    <li><a href="/module/messages/add">Schreiben</a></li>
    <li><a href="/module/messages/directory">Ordner</a></li>
    <li><a href="/module/messages/index">Auflisten</a></li>
</ul>

looking at your code, it doesnt seem like you're nesting any of the ul/li items, but the method deceze posted for doing so is correct:

<ul>
   <li>Item 1</li>
   <li>Item 2
      <ul>
         <li>subitem</li>
         <li>subitem 2</li>
      </ul>
   </li>
</ul>
link|flag

Your Answer

Get an OpenID
or

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