Posts

Showing posts with the label Html Lists

Can I Put Anything Inside DL/DT/DDs?

Answer : Updated answer based on comments: This was originally answered in 2011 for HTML 4, but the answer is different for HTML5: dt Flow content, but with no header, footer, sectioning content, or heading content descendants. dd Flow content. dt element reference on W3C dd element reference on W3C Original answer: DT elements should contain inline content. DD elements should contain block-level content. Definition lists vary only slightly from other types of lists in that list items consist of two parts: a term and a description. The term is given by the DT element and is restricted to inline content. The description is given with a DD element that contains block-level content. Source: W3C This question is also an interesting read: Why use definition lists (DL,DD,DT) tags for HTML forms instead of tables? Inside a DL you can only put DT and DD tags. A DT tag is an inline tag, so you should not put block elements in it. A DD tag can contain basically anyt...