← Alle WCAG 2.1 criteria
3.2.4Niveau AA3.2 Predictable

Consistente identificatie

Components that have the same functionality within a set of web pages are identified consistently.

Wat het betekent

Consistente identificatie begrijpen | Hoe te voldoen aan Consistente identificatie (Niveau AA) Componenten die dezelfde functionaliteit hebben binnen een verzameling webpagina's worden consistent geïdentificeerd.

Failing example

<!-- Fails: same search button labeled differently across pages -->
<!-- Header: <button>Find</button>         -->
<!-- Results page: <button>Search</button> -->
<!-- Mobile nav: <button>Go</button>       -->

How to fix it

<!-- Pass: consistent label for the same action -->
<button type="submit" aria-label="Search">Search</button>
<!-- Same label used on every page where this button appears -->

Hoe A11yRisk dit detecteert

A11yRisk detecteert dit criterium automatisch.

Scan uw site op deze overtreding