RuleSets of AccessMonitor - the validator of web accessibility practices
The “Viewport Meta Element Check” evaluates whether the <meta name="viewport">
element does not disable user scaling (i.e., pinch-to-zoom).
I noticed that the meta
element does not prevent users from zooming.
To address <meta>
elements that prevent users from zooming:
<meta>
element.<meta name="viewport" content="width=device-width, initial-scale=1.0">
).user-scalable=no
and the maximum-scale=1.0
attributes in the viewport tag.