Skip to content

Find what you need, instantly

Search components, ARIA roles & attributes, and WCAG criteria.

All roles

list

Document structure role

A container grouping a set of related, non-interactive items so assistive technologies announce the list and its item count. Its allowed children are listitems and grouping rows. Prefer a native `<ul>` or `<ol>`.

Used on
A group of list items. Prefer <ul> or <ol>.
Accessible name
Not required; may be named via aria-labelledby or aria-label.
Used by components
Example
role="list"
<ul role="list">
  <li role="listitem">One</li>
</ul>
See a live, tested example on the Breadcrumb page