Hello,
I am trying to achieve a numbered definition list. My current code is:
Code:
<ol>
<li>
<dl>
<dt>title</dt>
<dd>Lorem Ipsum</dd>
</dl>
</li>
<li>
<dl>
<dt>title</dt>
<dd>Lorem Ipsum</dd>
</dl>
</li>
<li>
<dl>
<dt>title</dt>
<dd>Lorem Ipsum</dd>
</dl>
</li>
</ol>
But if I could do away with the "dl" entirely, and simply place the "dt" and "dd" within the "li" that would be much better. Is that allowed?
[edit] Put more simply, does "dt" and "dd" need to be enclosed in a "dl"?