Tables use fixed widths — the fix
One or more tables on this page use fixed pixel widths that may cause horizontal scrolling on mobile devices. Tables are one of the most common causes of mobile layout issues.
Where this fits: mobile in SEO
Google indexes the mobile version of your site — desktop is the afterthought, not the other way round. Mobile issues (missing viewport, tap targets too close, content wider than the screen, intrusive interstitials) directly gate rankings for every query. With most traffic on phones, a mobile problem is not a subset of your audience — it is your audience.
Why tables use fixed widths hurts your rankings
Fixed-width tables do not adapt to narrow mobile screens, forcing horizontal scrolling or content overflow. This is a frequent cause of mobile-unfriendly assessments by Google. Tables with data are especially problematic because they cannot simply be reflowed like text content.
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site.
How to fix it
Make tables responsive by wrapping them in a scrollable container, using CSS table-layout: auto with max-width: 100%, or converting tables to stacked layouts on mobile using CSS media queries.
/* Responsive table wrapper */
.table-wrapper {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.table-wrapper table {
width: 100%;
min-width: 600px;
}Mobile best practices
- Ship a correct viewport meta tag on every page — it is one line and it gates everything.
- Keep tap targets ≥ 44×44px with real spacing between them.
- Never let content overflow the viewport horizontally.
- Test on a real mid-range phone over 4G, not just desktop devtools.
- Avoid intrusive interstitials — Google demotes pages that greet mobile users with a wall.
The full library: SEO best practices, by category.
Frequently asked questions
What does "Tables use fixed widths" mean?
One or more tables on this page use fixed pixel widths that may cause horizontal scrolling on mobile devices. Tables are one of the most common causes of mobile layout issues.
Why does tables use fixed widths matter for SEO?
Fixed-width tables do not adapt to narrow mobile screens, forcing horizontal scrolling or content overflow. This is a frequent cause of mobile-unfriendly assessments by Google. Tables with data are especially problematic because they cannot simply be reflowed like text content.
How do I fix tables use fixed widths?
Make tables responsive by wrapping them in a scrollable container, using CSS table-layout: auto with max-width: 100%, or converting tables to stacked layouts on mobile using CSS media queries.
How serious is this issue?
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site. It belongs to the mobile family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects tables use fixed widths on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by tables use fixed widths, and hands you a ready-made fix task.
Check my site free