← Alle WCAG 2.1 criteria
1.4.4Niveau AA1.4 Distinguishable

Herschalen van tekst

Text can be resized without assistive technology up to 200 percent without loss of content or functionality, except for captions and images of text.

Wat het betekent

Herschalen van tekst begrijpen | Hoe te voldoen aan Herschalen van tekst (Niveau AA) Behalve voor ondertitels voor doven en slechthorenden en afbeeldingen van tekst , kan tekst zonder hulptechnologie tot 200% geschaald worden zonder verlies van content of functionaliteit.

Failing example

/* Fails: font size set in px, container has overflow:hidden */
.card { height: 120px; overflow: hidden; }
p { font-size: 14px; }

How to fix it

/* Pass: use relative units and allow container to grow */
.card { min-height: 120px; overflow: visible; }
p { font-size: 0.875rem; } /* scales with browser zoom */

Hoe A11yRisk dit detecteert

A11yRisk detecteert dit criterium automatisch.

Scan uw site op deze overtreding