Ordered List
Back to simple components
An ordered list should be used when the order of the items listed matters, as they will be numbered. When using proper HTML markup a screen reader will notify the user that there is a list as well as the number of items in it.
Related Acceptance Criteria
Proper Markup
<ol>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ol>
- First
- Second
- Third