 |
|
| LI - list item |
|
| Description |
|
The LI tag indicates an itemized element, which is usually preceded by a bullet, a number, or a letter.
The LI tag is used inside list elements such as OL (ordered list) and UL (unordered list).
A single itemized element can contain other tags such as the P tag. |
|
| Syntax |
|
<LI TYPE="circle"|"square"|"disc"|"A"|"a"|"I"|"i"|"1" VALUE="number">....</LI> |
|
| Attributes |
|
TYPE specifies the type of bullet used for each list item. The value can be one of the following:
- CIRCLE specifies a hollow bullet.
- DISC specifies a solid round bullet.
- SQUARE specifies a square bullet.
- A specifies a sequence of uppercase letters
- a specifies a sequence of lowercase letters
- I specifies a sequence of uppercase Roman numerals
- i specifies a sequence of lowercase Roman numeral
- 1 specifies a sequence of numbers.
|
VALUE specifies the starting number for an item in an ordered list. This attribute is valid only in an ordered list |
The UNIVERSAL ATTRIBUTES can be used with this tag. |
|
|