What mobile-first indexing means
Google ranks your pages based on what its smartphone crawler sees. The desktop version is the afterthought now: if content, markup, or links exist only on desktop, they effectively don't exist for ranking.
The shift tracked reality — most searches happen on phones. Google announced the move in 2016 and completed it in 2023; since then, indexing via the mobile crawler is simply how Google works, for every site.
What it demands of a page
-
The same content on mobile. The old pattern of serving phones a stripped-down page is now self-sabotage: whatever the mobile version omits — text, images with their alt text, structured data, internal links — is omitted from ranking.
-
A viewport tag. One line of HTML tells browsers to fit the page to the screen instead of showing a zoomed-out desktop layout:
<meta name="viewport" content="width=device-width, initial-scale=1" />Without it, even responsive-looking CSS renders as a miniature desktop page a visitor must pinch-zoom to read.
-
Usable on a phone in practice. Readable text sizes, tap targets that fingers can hit, content not hidden behind screen-covering popups (which Google has penalized on mobile since 2017).
"Responsive" is the answer to most of it
A responsive site — one set of URLs, one HTML, layout adapting via CSS — satisfies mobile-first
indexing by construction, which is why Google recommends it. The configurations that get sites
in trouble are separate mobile sites (m.example.com) and dynamic serving, where mobile and
desktop can genuinely differ and drift apart unnoticed.
Checking where you stand
Open the page on an actual phone: is everything there, readable without zooming? Then confirm the technical layer — a viewport tag in the HTML, and no resources the mobile crawler is blocked from loading. Search Console's page-experience and usability reports flag the offenders Google itself encountered.