Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
dictionary term; if you want a header welcoming users to your site, you shouldn't call it a dictionary term.
Actually it’s "definition term", slightly different. I agree though, in that context, it doesn’t make sense to use a dl
<dl>
<dt>Spider-Man</dt>
<dd>Powers: Spider Sense, strength, agility, wall-crawling</dd>
<dd>Alter Ego: Peter Parker</dd>
</dl>
<dl>
<dt>Halloween Party</dt>
<dd>Come join us at our house for a fun costume party!</dd>
<dd>123 Main Street</dd>
<dd>October 31, 2007</dd>
</dl>
How semantic is the Spiderman example given above?
I would think the following is more semantic:
<h1>Spiderman</h1>
<dl>
<dt>Powers</dt>
<dd>Spider Sense, strength, agility, wall-crawling</dd>
<dt>Alter-Ego</dt>
<dd>Peter Parker</dd>
</dl>Am I the only one?
In the first example, you're using a <dd> to define Spiderman's powers, not Spiderman. Maybe I'm being too picky, and maybe the <h1> is out of place in my example. I'd love more opinions.
<h1>Super Heroes</h1>
<h2>Spiderman</h2>
<dl>
<dt>Powers</dt>
<dd>Spider Sense, strength, agility, wall-crawling</dd>
<dt>Alter-Ego</dt>
<dd>Peter Parker</dd>
</dl>
<h2>Batman</h2>
<dl>
<dt>Powers</dt>
<dd>Bad-ass, utility belt</dd>
<dt>Alter-Ego</dt>
<dd>Bruce Wayne</dd>
</dl>
<dl>
<dt>Spiderman</dt>
<dt>Powers</dt>
<dd>Spider Sense, strength, agility, wall-crawling</dd>
<dt>Alter-Ego</dt>
<dd>Peter Parker</dd>
</dl>
Perhaps adjust is on to something… How about this:
<dl>
<dt>Spiderman</dt>
<dd>
<dl>
<dt>Powers</dt>
<dd>Spider Sense, strength, agility, wall-crawling</dd>
<dt>Alter-Ego</dt>
<dd>Peter Parker</dd>
</dl>
</dd>
<dt>Batman</dt>
<dd>
<dl>
<dt>Powers</dt>
<dd>Bad-ass, utility belt</dd>
<dt>Alter-Ego</dt>
<dd>Brice Wayne</dd>
</dl>
</dd>
</dl>Thoughts? I don't even know if it's valid to nest a <dl> in a <dd>… It would render like:
1 to 14 of 14