Skip to content

Files

Latest commit

 

History

History
18 lines (12 loc) · 389 Bytes

a11y-structure.md

File metadata and controls

18 lines (12 loc) · 389 Bytes

Pattern: Malformed DOM element structure

Issue: -

Description

Enforce that certain DOM elements have the correct structure.

<!-- A11y: <figcaption> must be an immediate child of <figure> -->
<div>
	<figcaption>Image caption</figcaption>
</div>

Further Reading