reading-notes

HTML Ordered vs. Unordered Lists

Readings

Notes

Ordered Lists

Attributes of Ordered Lists

Attribute 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>

Unordered Lists

Attributes of Unordered Lists

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>