Lists - Organise text into a more structured outline by creating lists. Lists can be nested.
| Tag | Attribute | Description |
|---|---|---|
| DD | core, events | A definition description used in a DL tag (definition list). Can contain block-level content such as the P tag |
| DIR | core, events | Creates a multi-column directory list. Must contain atleast one list item. This element is the same as the UL (un-ordered list) tag |
| compact | Compacts the displayed list | |
| DL | core, events | Creates a definition list. Must contain atleast one DT or DD tag in any order |
| compact | Compacts the displayed list | |
| DT | core, events | The defintion term (or label) used within a DL (definition list) tag. Must contain text (which can be modified by text markup tags). |
| LI | core, events | Defines a list item within a list |
| type="..." | Changes the numbering style (1, a, A, i, I) in ordered lists or bullet style (disc, square, circle) in un-ordered lists | |
| value="..." | Sets the number to the given integer beginning with the current list item | |
| MENU | core, events | Creates a single column menu list. Must contain atleast one list item. This tag performs the same function as the UL (un-ordered list) tag |
| compact | Compacts the displayed list | |
| OL | core, events | Creates an ordered list. Must contain atleast one item |
| type="..." | Sets the numbering style (1, a, A, I, I) | |
| compact | Compacts the displayed list | |
| start="..." | Sets the starting number to the chosen integer relative to the value of the TYPE attribute. Thus set START="<an integer>" | |
| UL | core, events | Creates an un-ordered list. Must contain atleast one list item |
| type="..." | Sets the bullet style (disc, square, circle) | |
| compact | Compacts the displayed list | |