Mobile Usability

What mobile usability means for SEO — legible text, tap targets, viewport fit, no intrusive interstitials — why Google retired its report, and how to test it today.

First published: Jul 2, 2026 · Last updated: Jul 18, 2026 · Advanced
demand #9 in Mobile SEO#234 in Technical SEO#325 on the site

Mobile usability is whether a page is easy to use on a phone: text you can read without zooming, tap targets big and spaced enough to hit reliably, content that fits the viewport with no horizontal scroll, and no intrusive interstitials. Google retired its dedicated Search Console Mobile Usability report, Mobile-Friendly Test tool, and API on December 1, 2023 — not because the signals stopped mattering, but because Lighthouse and other tooling matured and mobile-first indexing was effectively complete. Any guide still telling you to open that report or that tool is stale. Check mobile usability today with Lighthouse, PageSpeed Insights, Chrome DevTools device emulation, Bing's still-live Mobile Friendliness Test, and third-party crawlers. It's distinct from mobile-first indexing (which version Google indexes) and Core Web Vitals (loading/interactivity/stability).

TL;DR — Mobile usability = ease of use on a touch device, driven by four signals: legible text (Lighthouse passes at 12px on ≥60% of text; 16px is the practical body-copy baseline), tap targets (Lighthouse fails below 48×48 CSS px or when ≥25% of the target within 48px of center overlaps a neighbor; ~8px spacing is a starting point — WCAG 2.2’s separate 24×24 CSS px minimum is an accessibility floor, not a Google ranking rule), content sized to the viewport (needs a proper viewport meta tag, but the tag alone doesn’t guarantee responsive layout; no horizontal scroll), and no intrusive interstitials. Google retired the Search Console Mobile Usability report, the Mobile-Friendly Test tool, and the API on December 1, 2023 (confirmed Dec 4) — not because the signals stopped mattering, but because Lighthouse matured and mobile-first indexing was effectively complete. Check it now with Lighthouse, PageSpeed Insights, DevTools device emulation, Bing’s still-live test, and crawlers. Distinct from mobile-first indexing (which version is indexed) and Core Web Vitals (loading/interactivity/stability). It’s one page-experience signal, not a standalone heavily-weighted ranking factor.

Evidence for this claim Google retired Search Console's Mobile Usability report, Mobile-Friendly Test, and Mobile-Friendly Test API on December 1, 2023. Scope: Current availability of the former tools and report. Confidence: high · Verified: Google Search Central Blog: Role of page experience Evidence for this claim Mobile usability remains important to users and mobile-first indexing, but the retired report is not a current Search Console diagnostic. Scope: Current Google mobile-first indexing guidance. Confidence: high · Verified: Google Search Central: Mobile-first indexing best practices

The definition, precisely

Mobile usability is whether a page is easy to use on a mobile/touch device. It’s a user-experience concept that lives inside Google’s broader page experience model, and it comes down to four concrete signals. The rest of this section is each one with its real threshold and citation — because the specific numbers are exactly what most competing articles skip.

Signal 1: legible text

If people have to pinch-zoom to read your body copy, the font is too small. There are two numbers worth keeping straight, and conflating them is a common mistake:

  • The audit-pass bar is 12px. Lighthouse’s Document uses legible font sizes audit says: “Aim to have a font size of at least 12 px on at least 60% of the text on your page.” That’s the threshold to technically pass the automated check.
  • The practical baseline is ~16px. 12px passing an audit doesn’t mean 12px is comfortable to read on a phone. 16px is the generally recommended floor for mobile body text, with headings larger. Don’t design to the audit’s minimum.

So: 12px/60% is the pass line; 16px is what you should actually aim for on body copy.

Signal 2: tap targets

Fingers are blunt instruments. Lighthouse’s Tap targets are not sized appropriately audit fails a target on two conditions: when “the target is smaller than 48 px by 48 px,” and when “at least 25% the target area within 48 px of the center of the target overlaps with another target.” A few practical notes from the same doc:

  • Targets sized 48×48 CSS px consistently pass.
  • The tappable area is what counts, not the visual size — you can keep a small icon and expand its hit area with padding to reach 48px. (This kills the myth that every button must look 48px.)
  • ~8px between targets is a reasonable starting point but “is not always enough spacing to pass the audit especially for very small targets.”

Older Google guidance framed this as roughly 7mm targets with ~5mm spacing; at typical mobile densities that’s broadly consistent with the 48px figure. Cite the 48px/8px numbers as current; the mm ones are historical color.

There’s a second, separate number worth knowing so you don’t conflate standards: WCAG 2.2’s Success Criterion 2.5.8 (Target Size Minimum, Level AA) sets a 24×24 CSS px minimum (with spacing/inline/essential exceptions) — an accessibility-conformance rule from the W3C, not a Google Search ranking threshold. It’s smaller than Lighthouse’s 48px audit bar because the two come from different bodies measuring different things: meeting Lighthouse’s 48px figure clears WCAG’s 24px floor too, but don’t cite either number as a fixed, timeless “Google requires N px” rule — Lighthouse’s is a Chrome tooling audit threshold, WCAG’s is an accessibility conformance criterion.

Signal 3: content sized to the viewport

Content should fit the width of the phone — no horizontal scrolling, no page rendered at desktop width and shrunk to unreadable. The mechanism is the viewport meta tag. Without it (or misconfigured), mobile browsers assume a desktop-width canvas and scale everything down. The fix is one line in the <head>:

<meta name="viewport" content="width=device-width, initial-scale=1">

Google’s guidance: “make sure your page content fits the width of the viewport, keeping in mind that not all mobile devices are the same width.” So don’t hard-code fixed pixel widths that only fit one phone.

The tag is necessary but not sufficient. It aligns the layout viewport with the device width — it doesn’t, by itself, make fixed-width content responsive. A page can ship a correct viewport meta tag and still fail mobile usability if individual elements (a wide table, an unbreakable long string, a fixed-pixel container) are hard-coded wider than the viewport. The tag sets the canvas; your CSS still has to actually fit it.

Signal 4: no intrusive interstitials

A full-screen popup that blocks your content the moment a visitor arrives from search is both a usability problem and a search problem. Google: “intrusive interstitials and dialogs are page elements that obstruct users’ view of the content, usually for promotional purposes,” and it warns that they “make it hard for Google and other search engines to understand your content, which may lead to poor search performance.” The guidance is blunt — “don’t obscure the entire page with interstitials” — and it points to small banners taking only a fraction of the screen as the acceptable alternative. (The full treatment of what’s penalized vs. exempt lives in the intrusive interstitials deep dive.)

What happened to the Mobile Usability report?

This is where most guides — including some published in the last year — are flatly wrong, so it’s worth getting the timeline exactly right.

  • April 2023 — announced. In The role of page experience in creating helpful content, Google said: “Also starting December 1, 2023, we’ll be retiring Search Console’s ‘Mobile Usability’ report, the Mobile-Friendly Test tool and Mobile-Friendly Test API. This doesn’t mean that mobile usability isn’t important for success with Google Search.” Its reasoning: “in the nearly ten years since we initially launched this report, many other robust resources for evaluating mobile usability have emerged, including Lighthouse from Chrome.”
  • December 1, 2023 — retired. The report, the Mobile-Friendly Test tool, and the API all went away. Google removed the corresponding mentions from its search help docs the same day. The old Mobile-Friendly Test URL (search.google.com/test/mobile-friendly) now redirects to Lighthouse documentation, and trying to open the Mobile Usability report in Search Console redirects to the GSC overview page.
  • December 4, 2023 — confirmed. Google’s Search Console account confirmed the sunset publicly, thanking site owners “for working with us on this journey.”
Evidence for this claim Google retired Search Console's Mobile Usability report, Mobile-Friendly Test, and Mobile-Friendly Test API on December 1, 2023. Scope: Current availability of the former tools and report. Confidence: high · Verified: Google Search Central Blog: Role of page experience

Why now? Two forces. First, mobile-first indexing was effectively complete — Google announced “the trek to Mobile First Indexing is now complete” on October 31, 2023 — so a dedicated GSC report split out by device made less sense. Second, Lighthouse had matured into a better, more actionable checker than the old standalone tool. The signals didn’t stop mattering; the dedicated report did.

The practical correction: stop telling people to “check the Mobile Usability report” or “run the Mobile-Friendly Test.” Both are gone. (I’ll be candid — my own Ahrefs guide, Mobile-First Indexing Goes Mobile-Only, last updated June 2024, still points readers to those two now-defunct destinations in one spot; that’s exactly the kind of stale advice this article exists to fix, and it’s on my list to correct there too.)

How to check mobile usability today

Since there’s no single dedicated report anymore, you assemble it from a few tools:

  • Chrome Lighthouse (DevTools → Lighthouse) — the direct replacement. Runs the legible-font, tap-target, and viewport audits and gives you the specific failing elements.
  • PageSpeed Insights (pagespeed.web.dev) — runs Lighthouse in the cloud on the mobile profile; good for a quick shareable URL-level check.
  • Chrome DevTools device toolbar — emulate a phone, eyeball horizontal scroll, tiny text, and cramped controls at real dimensions.
  • Bing’s Mobile Friendliness Test Tool — a genuine differentiator: Bing still runs a live mobile-friendliness test in Bing Webmaster Tools, even though Google’s is gone. Bing’s own pitch: “making pages mobile-friendly increases user engagement on mobile devices. It can also help you rank better in Bing search results on mobile devices.” Handy for a second opinion on rendering.
  • Third-party crawlers — Ahrefs Site Audit and similar can crawl with a mobile user-agent and surface mobile-specific issues at scale (connect the PageSpeed Insights API for the mobile checks).
  • A real device. Nothing beats opening the page on an actual phone.

No single tool proves end-to-end usability on its own — combine an automated audit (Lighthouse or PageSpeed Insights), an emulated visual check (DevTools device toolbar), and at least one real-device pass before calling a page fixed.

Mobile usability vs. mobile-first indexing vs. Core Web Vitals

These three get blurred together constantly. They’re related but distinct:

ConceptWhat it’s aboutExample question
Mobile usabilityIs the page easy to use on a phone?Are my tap targets big enough?
Mobile-first indexingWhich version of the page Google indexesIs my full content in the mobile HTML?
Core Web VitalsLoading, interactivity, visual stabilityIs my LCP under 2.5s?

A site can be fully on mobile-first indexing and still have terrible mobile usability (tiny text, cramped buttons), and vice versa. The mobile-first indexing deep dive and the Core Web Vitals material cover those two in full — this article is strictly the usability layer.

Does mobile usability affect rankings?

Yes, but keep it in proportion. Mobile usability contributes to page experience, which Google treats as a set of signals within broader ranking systems — not a single heavily-weighted factor with a fixed score. Google’s own caution: site owners “should not focus on only one or two aspects of page experience,” and “Google Search always seeks to show the most relevant content, even if the page experience is sub-par.” So fix usability because it helps real users (and it’s the right thing to do) — not because you expect a magic ranking bump. It’s a contributor, not a kingmaker.

Where this sits in the mobile-seo cluster

This is one piece of the wider mobile SEO picture. Mobile-first indexing covers which version Google reads and the content-parity rule; the mobile SEO checklist is the run-it-down audit; the interstitials, AMP, and responsive-vs- dynamic-serving topics each get their own treatment. This article deliberately stays in its lane — the usability signals — so it complements those rather than repeating them.

Add an expert note

Pin an expert quote

New person? Create their unclaimed profile at /admin/experts/ → Pin an expert quote first.