Unordered List
Back to simple components
An unordered list should be used when the order of the items listed does not matter. By default they are bulleted, but that can be changed to almost anything (or nothing) with styling. 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
<ul>
<li>Apples</li>
<li>Oranges</li>
<li>Bananas</li>
</ul>
- Apples
- Oranges
- Bananas