![]() |
VOOZH | about |
The HTML <ul> tag defines an unordered (bulleted) list. Use the <ul> tag together with the <li> tag to create unordered lists. List items (<li>) are nested within <ul>, allowing the display of items without a specific order, typically represented by bullet points in browsers.
| Attribute | Description |
|---|---|
HTML <ul> compact Attribute | Renders the list smaller. |
HTML <ul> type Attribute | Specifies the kind of marker used in the list. Values include disc, circle, square, etc. |
Note: The <ul> attributes are not supported by HTML 5.
The list-style-type property defines the type of bullets:
A nested unordered list allows creating multi-level hierarchies by placing a <ul> inside an <li>.