Fix Google Search Console Mobile Usability Issues With A CSS Snippet

Every other week Google Search Console will send me an email reporting Mobile Usability issues on this blog. I’ll log in, click “Validate Fix”, and find that everything is just peachy. What’s going on? More importantly, how do we fix this?

Usually Google Search Console reports one or all of the following issues:

The pages it finds these issues on are seemingly random.

What’s causing this?

The origin of the issue is two-fold:

  1. Sometimes the Googlebot is in a hurry and will not fetch all page resources when it loads your page for indexing.
  2. One or several HTML elements on the page are wider than the mobile viewport but only so when your CSS fails to load.

Things go haywire when Googlebot skips your CSS file on a page where some content forces the viewport to scale or scroll if it doesn’t receive a CSS style.

This could for example be an <img> or <video> tag without a width attribute, or a code snippet with long lines in a <pre> (as seen in the image below).

a code snippet with long lines forces the website to be way too wide

Another culprit can be the content itself. Super long German words like Rechtsschutzversicherungsgesellschaften won’t automagically wrap to the next line.

How to fix it?

We can press “Validate Fix” and that’ll fix it the day after, but that gets old fast. Instead we need a more permanent solution.

The fix is a small set of CSS styles. We can add the following code snippet to the <head> of the page.

Preferably right before the <link> element that references our stylesheet.

<style>
    :where(body, iframe, pre, img, svg, video, canvas, select) {
        max-width: 100%;
        overflow: auto;
        word-break: break-word;
    }
</style>

This snippet makes sure that when Googlebot ignores your page resources, it at least applies these styles to the elements in the :where() selector list.

We use the :where() selector so the styles are applied with 0 specificity. This means that we will be able to overwrite these styles in our stylesheet without having to make our selectors extra specific.

After copying the snippet to your page, ask Google Search Console, for one final time, to “Validate The Fix”, the issues should go away over the next few days and will only return if you make an actual mistake in your stylesheet.

Google Search Console Mobile Usability issues dissapear after applying fix

Conclusion

Instead of gambling on the Googlebot we took matters into our own hands and secured our HTML elements against breaking the site by applying a tiny set of base styles.

While this will make Googlebot happy it will also one day make one of your visitors happy when inevitably your stylesheet fails due to unforeseen consequences or the universe aligning in a weird way.

Instead of rolling with our eyes we can now trust something is wrong when Google Search Console sends us a Mobile Usability issue report.

I share web dev tips on Twitter, if you found this interesting and want to learn more, follow me there

Or join my newsletter

More articles More articles