XHTML 1.1 Element ( Tag ) and Attribute Reference
XHTML 1.1 Reference Index > List Module Index
The dl element ( tag )
contents
dl: valid parent and child elements
- valid parent elements
- blockquote, body, button, dd, del, div, fieldset, form, ins, li, map, noscript, object, td, th
- valid child elements
- dd, dt
dl: valid attributes
- by attribute type
- Core: class, id, title
- Internationalization: dir, xml:lang
- Events: onclick, ondblclick, onkeydown, onkeypress, onkeyup, onmousedown, onmousemove, onmouseout, onmouseover, onmouseup
- Style: style
dl: browser test
The following code sample:
<dl>
<dt>Definition Term</dt>
<dd>Definition Description</dd>
</dl>
appears in your browser as:
- Definition Term
- Definition Description