Mobile-Friendly Test

Check if Google sees your page as mobile-friendly. Find viewport, tap target, and font-size issues that hurt mobile rankings.

Google's mobile-friendly test was retired as a standalone Google tool in December 2023, but the underlying signals never went away — they're still baked into Lighthouse and the mobile ranking algorithm. This free checker runs the same audits against your URL and explains every issue in plain English instead of cryptic Lighthouse jargon.

## Why mobile-first indexing changes the maths

Since 2019, Googlebot crawls your site primarily as a smartphone. If your mobile page hides content that exists on desktop, Google sees the smaller content. If your mobile page is slower or has tap targets too close together, your desktop rankings suffer too. Mobile is not a 'version' of your site — it's the only version Google ranks.

## The four hard requirements

First, the viewport meta tag must exist and use `width=device-width`. Without it the browser zooms out to a 980px desktop layout and you fail every other test. Second, body text must be at least 16px — anything smaller triggers iOS to zoom in on focus, which is a known UX killer. Third, tap targets must be at least 44×44 CSS pixels with adequate spacing; cramped buttons cause mis-taps that get logged as bounces. Fourth, content must fit in the viewport without horizontal scrolling — a `width: 800px` div ruins everything.

## The soft signals nobody talks about

Mobile-friendly is not just the binary checklist. Google's mobile usability signals also include time-to-interactive on slow networks, layout shift from web fonts, and how your page behaves when the soft keyboard appears. A form that pushes the submit button under the keyboard fails this silently. So does a sticky header that consumes 30% of an iPhone SE's viewport.

## Why progressive enhancement still matters

The fastest, most resilient mobile sites are the ones that render meaningful content from the server-side HTML before JavaScript runs. SPAs with a 4MB JS bundle frequently pass the mobile-friendly test (because the viewport tag is set) while delivering a blank screen for 6 seconds on a Moto G — and Googlebot Mobile gives up before the bundle parses. If you're running a Vite or Next.js SPA, prerender or SSR your critical routes.

## Test from the device, not just the tool

After fixing what the tool reports, pick up an actual budget Android phone, throttle to slow 4G, and use the site like a customer. The vast majority of real mobile UX failures — frustrating modal triggers, off-screen close buttons, accidental zoom — never show up in automated reports.

What this tool checks

Why it matters

Google switched to mobile-first indexing in 2019 — the mobile version of your page is the one that ranks, even for desktop searches. A page that fails the mobile-friendly test silently loses ranking across every device.

How to fix what it finds

Methodology

We load the URL in a headless Chromium with the Lighthouse mobile preset (Moto G4 user agent, 360×640 viewport, 4× CPU slowdown, 4G throttling). We then inspect the rendered DOM and computed styles for the four Google mobile-usability checks: viewport configuration, font sizes, tap-target dimensions and spacing, and content overflow. Each failing element is captured with its CSS selector so you can fix the exact node, not just be told 'tap targets too small'. Lighthouse's broader mobile audits (passive event listeners, viewport zoom enabled, etc.) are included as supplementary signals. A single test takes 10–20 seconds; we never instrument your real users.

Frequently asked questions

Is the Google Mobile-Friendly Test gone?

Google retired the standalone tool URL in December 2023, but the signals it surfaced are still part of Lighthouse and the mobile-first index. Our checker runs the same audits, so you get equivalent results.

What's the minimum text size for mobile?

16px for body text. Anything smaller triggers iOS Safari to zoom in when a user taps a form field, and Google flags it as illegible.

How big should tap targets be?

At least 44×44 CSS pixels with 8px of clear space around them. This matches Apple's Human Interface Guidelines and Google's mobile usability rules.

Does this affect desktop rankings too?

Yes. Google uses mobile-first indexing, meaning the mobile version of your page is the one indexed and ranked — including for desktop searches.

Why does my desktop site score perfect but mobile fails?

Almost always one of: fixed-width container, missing viewport tag, font size below 16px, or a third-party widget (chat bubble, ad) that overflows on a 360px screen. Our checker pinpoints which.