Lists / Group Ordered

ClickUp Ticket


WCAG Description of Component

The ordered list consists of one <ol> element and multiple list item (<li>) elements:

Reference link

Accepted Attributes on the <ol> tag


Note

Details about number order. In ordered lists, it is not possible to continue list numbering automatically from a previous list or to hide numbering of some list items. However, authors can reset the number of a list item by setting its value attribute. Numbering continues from the new value for subsequent list items.


Reference Links


Component Example

  1. List Item
  2. List Item
  3. List Item
  4. List Item
    1. List Item
    2. List Item
    3. List Item
  5. List Item
  6. List Item

Code Snippets

HTML

                
<ol>
    <li>List Item</li>
    <li>List Item</li>
    <li>List Item</li>
    <li>List Item
        <ol>
            <li>List Item</li>
            <li>List Item</li>
            <li>List Item</li>
        </ol>
    </li>
    <li>List Item</li>
    <li>List Item</li>
</ol>
                
            

History Tracking

  1. Code orginally created by Kelly; Approved by Steen on Nov 24,2023