XHTML 1.1 Element ( Tag ) and Attribute Reference
XHTML 1.1 Reference Index > List Module Index
The dt element ( tag )
contents
dt: valid parent and child elements
- valid parent elements
- dl
- valid child elements
- a, abbr, acronym, b, bdo, big, br, button, cite, code, del, dfn, em, i, img, input, ins, kbd, label, map, object, q, samp, script, select, small, span, strong, sub, sup, textarea, tt, var
dt: 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
dt: 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