
Originally Posted by
Stomme poes
However dt's only show a semantic relationship between what's in them and all that's in the dd, in the way that a term is related to its definition. Looking at your document outline, these will not come up like heading tags will (you can also put heading tags inside dt's if that makes more sense):
<dt><h3>some header</h3></dt>
I don't think that's allowed ... you can have block elements in the <dd>, but <dt> is inline only.
There's nothing wrong with having block elements in bulleted lists. Something along the lines of:
Code:
<ul>
<li><h3>First item</h3>
<p>Information about the first item</p></li>
<li><h3>Second item</h3>
<p>Information about the second item</p>
<p>Lots and lots of it!</p></li>
</ul>
Bookmarks