HTML 5: The Markup Language (ARIA Edition)

ulunordered list # T

The ul element represents an unordered list of items; that is, a list in which changing the order of the items would not change the meaning of list.

Content model #

Attribute model #

Element-specific attributes #

Tag omission #

A ul element must have both a start tag and an end tag.

Permitted contexts #

Typical default display properties #

ul {
display: block;
list-style-type: disc;
margin: 1em 0 1em 0;
padding-start: 40px; }