Skip to content

Find what you need, instantly

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

All roles

none

Document structure role

Removes an element's implicit semantics so assistive technologies ignore its role while still exposing its contents — the modern synonym of role='presentation'. Use it to strip default roles, for example on a `<table>` used purely for layout. Focusable elements and those carrying ARIA attributes can't have their semantics fully removed this way.

Used on
Any element whose implicit semantics should be removed (synonym of presentation).
Accessible name
Not applicable — naming is prohibited.
Example
role="none"
<ul role="none">
  <li role="none"><a role="menuitem" href="/">Home</a></li>
</ul>