| |
Description
| |
The type attribute is used to define what type of numbering
system your list will use. Not using this attribute defaults the
type to the standard numbers. Other acceptable values include "A",
which uses uppercase letters starting with A; "a", which uses
lowercase letters starting with a; "I", which uses uppercase Roman Numerals
starting with I; and "i", which uses lowercase Roman Numerals starting with
i.
|
Code
| |
<ol type="i">
<li>LIST ITEM ONE
<li>LIST ITEM TWO
</ol> |
Appearance
| |
- LIST ITEM ONE
- LIST ITEM TWO
|
|