← Tous les critères WCAG 2.1
3.2.4Niveau AA3.2 Predictable

Identification cohérente

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

Ce que cela signifie

Comprendre Identification cohérente (en anglais) | Comment satisfaire à Identification cohérente (en anglais) (Niveau AA) Dans un ensemble de pages Web les composants qui ont la même fonctionnalité sont identifiés de la même façon.

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 -->

Comment A11yRisk détecte cela

A11yRisk détecte ce critère automatiquement.

Analyser votre site pour cette violation