Can I put anything inside DL/DT/DDs?

后端 未结 3 760
余生分开走
余生分开走 2020-12-28 17:02

can I use definition lists just like unordered/ordered lists?

I mean insert DIVs any anything I want inside DT or DD?

...
3条回答
  •  春和景丽
    2020-12-28 17:25

    As of December 2017 according to HTML 5.2 Specification, you can now add a single nested

    tag inside a
    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.

提交回复
热议问题