dl
, dt
and dd
markupThe content model of a dl
is that it contains zero or more groups each consisting of one or more
This implies that “omitting” a dt
elements followed by one or more dd
elements.dd
element means that two subsequent dt
elements share the same definition. For example:
<dl> <dt>foo <dt>bar <dd>baz </dl>
Here “foo” and “bar” share the definition “baz.” It seems that some people expect (looking at markup around the web, tutorials and all that) that “foo” has no definition at all. Unfortunately that’s wrong. Fix it.