Skip to content

Files

Latest commit

 

History

History
16 lines (10 loc) · 370 Bytes

a11y-hidden.md

File metadata and controls

16 lines (10 loc) · 370 Bytes

Pattern: Use of hidden element

Issue: -

Description

Certain DOM elements are useful for screen reader navigation and should not be hidden.

<!-- A11y: <h2> element should not be hidden -->
<h2 aria-hidden="true">invisible header</h2>

Further Reading