Can I put anything inside DL/DT/DDs?

Viewed 24633

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?

3 Answers

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.

Related