Start scanning free

( Perceivable / WCAG 1.4.4 )

Viewport zoom is disabled

This check maps to Resize Text. Use the guidance below to confirm the issue, understand who it affects and ship a fix.

Critical Level AA WCAG 1.4.4 — Resize Text

What’s wrong

The <meta name="viewport"> tag includes user-scalable=no or maximum-scale=1, which prevents users from zooming the page.

Why it matters

People with low vision rely on browser zoom to make text large enough to read. Disabling zoom takes away the most fundamental accessibility control a browser provides.

How to fix it

Remove user-scalable=no and maximum-scale=1 from your viewport meta tag.

Before
<meta name="viewport"
  content="width=device-width, initial-scale=1, user-scalable=no">
After
<meta name="viewport" content="width=device-width, initial-scale=1">

Learn more