Hiding Content Techniques
Technique | Technology | Visual Rendering | Accessibility Tree (used by screen readers) |
---|---|---|---|
display: none; |
CSS | Not rendered | Not included |
visibility: hidden; |
CSS | Not rendered, but visual dimension is preserved | Not included |
|
CSS | Not rendered | Included |
aria-hidden="true" |
ARIA | Rendered | Not included |