← Wszystkie kryteria WCAG 2.1
3.2.4Poziom AA3.2 Predictable

Spójna identyfikacja

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

Co to oznacza

Zrozumieć KS Spójna identyfikacja | Jak spełnić KS Spójna identyfikacja (Poziom AA) Komponenty, które mają tę samą funkcjonalność w ramach jednego zestawu stron internetowych , są w taki sam sposób zidentyfikowane.

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

Jak A11yRisk to wykrywa

A11yRisk wykrywa to kryterium automatycznie.

Skanuj swoją witrynę pod kątem tego naruszenia