TIL ARIA role presentation
POSTED ON:
TAGS: accessibility semantic html
The presentation role and its synonym none remove an element's implicit ARIA semantics from being exposed to the accessibility tree.
Think of this as a reset. You use role="presentation"
to remove semantic meaning from an element.
<!-- how it looks -->
<h2 role="presentation">Democracy Dies in Darkness</h2>
<!-- how it acts -->
<div>Democracy Dies in Darkness</div>
via MDN
Related TILs
Tagged: accessibility