Data table missing caption — the fix
A data table on this page does not include a <caption> element that describes the table's purpose and content.
Where this fits: accessibility in SEO
Accessibility overlaps heavily with SEO because both depend on machine-readable structure: alt text, heading hierarchy, labels, contrast. Screen readers and search crawlers consume the same signals. Accessible sites rank better not by special treatment but because the same fixes — descriptive alt attributes, proper headings, real link text — are exactly what search engines parse for meaning. It is also, in a growing number of jurisdictions, the law.
Why data table missing caption hurts your rankings
Table captions help all users (including screen reader users) understand the purpose and context of the table before navigating its contents. Without a caption, users must examine the data to determine what the table is about. This is recommended under WCAG 2.1 (Success Criterion 1.3.1).
This is a low-severity issue: a polish item. Fix it in batches during scheduled maintenance; the win is cumulative quality, not a step change.
How to fix it
Add a <caption> element as the first child of the <table> element with a brief description of the table's content and purpose.
<table>
<caption>Quarterly Sales Results 2025</caption>
<thead>...</thead>
<tbody>...</tbody>
</table>Accessibility best practices
- Give every informative image an alt attribute that describes its content; decorative images get alt="".
- Maintain heading hierarchy — never skip levels for styling reasons.
- Make link text meaningful out of context; screen readers list links in isolation.
- Keep text contrast at WCAG AA (4.5:1) minimum.
- Make everything keyboard-operable with a visible focus state.
The full library: SEO best practices, by category.
Frequently asked questions
What does "Data table missing caption" mean?
A data table on this page does not include a <caption> element that describes the table's purpose and content.
Why does data table missing caption matter for SEO?
Table captions help all users (including screen reader users) understand the purpose and context of the table before navigating its contents. Without a caption, users must examine the data to determine what the table is about. This is recommended under WCAG 2.1 (Success Criterion 1.3.1).
How do I fix data table missing caption?
Add a <caption> element as the first child of the <table> element with a brief description of the table's content and purpose.
How serious is this issue?
This is a low-severity issue: a polish item. Fix it in batches during scheduled maintenance; the win is cumulative quality, not a step change. It belongs to the accessibility 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 data table missing caption 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 data table missing caption, and hands you a ready-made fix task.
Check my site free