Skip to content

Files

Latest commit

 

History

History
19 lines (12 loc) · 480 Bytes

a11y-missing-content.md

File metadata and controls

19 lines (12 loc) · 480 Bytes

Pattern: Missing attribute content

Issue: -

Description

Enforce that heading elements (h1, h2, etc.) and anchors have content and that the content is accessible to screen readers.

<!-- A11y: <a> element should have child content -->
<a href='/foo'></a>

<!-- A11y: <h1> element should have child content -->
<h1></h1>

Further Reading