Conforma
Accessibility fix guide WCAG 1.4.4 Resize Text

How to fix: Do not block zoom

The viewport meta tag must not disable pinch-to-zoom or cap the scale. People with low vision rely on zooming text to read it.

The fix

Do not disable zoom: remove user-scalable=no and maximum-scale limits from the viewport meta tag.

Before and after

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

Related fixes

Does your site have this issue?

Scan any page free against WCAG 2.2 AA and get every issue with its fix.

Scan your site free
← All fix guides