XHTML 1.1 Element ( Tag ) and Attribute Reference
XHTML 1.1 Reference Index > List Module Index
The ul element ( tag )
contents
ul: valid parent and child elements
- valid parent elements
- blockquote, body, button, dd, del, div, fieldset, form, ins, map, noscript, object, td, th
- valid child elements
- li
ul: 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
ul: browser test
The following code sample:
<ul>
<li>Milk</li>
<li>Eggs</li>
<li>Bread</li>
<li>Apples</li>
</ul>
appears in your browser as:
- Milk
- Eggs
- Bread
- Apples