can I use definition lists just like unordered/ordered lists?
I mean insert DIVs any anything I want inside DT or DD?
<dl>
<dt>
...
</dt>
<dd>
...
</dd>
</dl>
Do any browsers, or search engines complain?
can I use definition lists just like unordered/ordered lists?
I mean insert DIVs any anything I want inside DT or DD?
<dl>
<dt>
...
</dt>
<dd>
...
</dd>
</dl>
Do any browsers, or search engines complain?
As of December 2017 according to HTML 5.2 Specification, you can now add a single nested <div> tag inside a <dl> tag, I assume for styling purposes:
https://www.w3.org/TR/html52/grouping-content.html#the-dl-element
Content model:
Either: Zero or more groups each consisting of one or more dt elements followed by one or more dd elements, optionally intermixed with script-supporting elements.
Or: One or more div elements, optionally intermixed with script-supporting elements.