Viewport Meta Checker

Score whether phones get a device-width layout and a 1× first paint — not a ranking trick.

What this tool gives you

Viewport score
Fetch or paste
Zoom hygiene
Starter snippet

Check viewport meta

Fetch a public page or paste the head. The checker scores mobile layout hygiene — not a ranking trick.

What this checker looks for

Viewport meta tells phones the layout width. It does not make ChatGPT cite you.

width=device-width

CSS pixels match the device, not a 980px desktop canvas.

initial-scale=1

First paint is 1×, not zoomed in or out.

Do not lock zoom

user-scalable=no fails accessibility on many pages.

One tag

Duplicate viewport tags fight each other.

Skip dpi hacks

target-densitydpi is obsolete.

Not a ranking lever

This is mobile layout hygiene, not a citation trick.

How to use the checker

Fix width first. A locked zoom on the right width is still an accessibility fail.

1

Check the live page

Fetch the public URL or paste the head from view-source.

2

Keep device-width + 1

width=device-width, initial-scale=1. One tag in head.

3

Leave zoom alone

Drop user-scalable=no and maximum-scale=1.

What a healthy viewport usually includes

One tag. device-width. initial-scale=1. Zoom left on. No dpi leftovers.

PartJobDefault for public sites
name=viewportDeclare the layout boxOne tag in <head>
widthMatch CSS pixels to the devicedevice-width
initial-scaleFirst paint zoom1
user-scalableAllow pinch-zoomomit (yes)
maximum-scaleCap zoomomit
target-densitydpiOld Android dpi hintomit

Related GEO pages

Fix the viewport, then lock title/meta, then Open Graph.

Viewport meta FAQs

Does a viewport tag make ChatGPT cite my page?

No. Viewport only tells phones the layout width. Citations still depend on crawl access, answer-ready content and corroboration.

What is the default viewport for public pages?

width=device-width, initial-scale=1. Skip user-scalable=no and maximum-scale=1 so people can pinch-zoom.

Is a missing viewport a ranking problem?

Google may flag mobile usability, but the real cost is a desktop-width layout on phones. Fix the tag; do not treat it as a citation lever.