<ol>
element designates an ordered listAttribute | Explanation |
---|---|
reversed |
Boolean value that indicates if the numbers will present in reverse order |
start |
An Arabic numeral that designates from what number the list will start |
type |
What type of list it will be: <ul><li> a lowercase letters</li><li>A uppercase letters</li><li>i lowercase Roman numerals</li><li>I uppercase Roman numerals</li><li>1 number (default)</li></ul> |
<ul>
element designates an unordered listtype
to represent circle
, disc
, and square
Attribute | Explanation |
---|---|
compact |
Boolean value that determines if the list will display in a compact way or expanded |
type |
Changes the bullet styles: <ul type="circle"><li> circle </li></ul><ul type="disc"><li>disc </li></ul><ul type="square"><li>square </li></ul> |