Tables use fixed widths: what it is, why it matters, and how to fix it
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
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;
}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