Skip to main content
Beta: Front-End Checklist is currently in beta. Some issues are still being fixed. Thanks for your patience.

Ensure table headers associate with data cells

Checks that table headers have associated data cells

Utilities
Quick take
Typical fix time 10 min
  • Every `<th>` must be associated with one or more `<td>` cells
  • Avoid empty headers that don't describe any data
  • Remove unnecessary headers to reduce screen reader noise
Why it matters: Orphaned headers without data cells can confuse users of assistive technology and indicate a broken table structure.

Rule Details

All table headers must describe at least one cell of data to be useful for accessibility.

Code Example

<!-- ✅ GOOD: Every header has associated data -->
<table>
  <tr>
    <th scope="col">Product</th>
    <th scope="col">Price</th>
  </tr>
  <tr>
    <td>Apples</td>
    <td>$1.00</td>
  </tr>
</table>
 
<!-- ❌ BAD: Empty header with no purpose -->
<table>
  <tr>
    <th scope="col">Product</th>
    <th scope="col"></th> <!-- Empty/Unused -->
  </tr>
  <tr>
    <td>Apples</td>
    <td>$1.00</td>
  </tr>
</table>

Why It Matters

  • Reduced Noise: Prevents screen readers from announcing headers that don't lead to meaningful information.
  • Logical Structure: Ensures the table's visual and programmatic structure matches its purpose.
  • Navigation Accuracy: Prevents dead-ends in keyboard and screen reader navigation.
  • Clarity: Helps all users understand exactly what data each column or row represents.

Exceptions

  • Simple data tables can sometimes fail more from missing header relationships than from missing enhancements such as captions or mobile wrappers, so prioritize the strongest semantic issue.
  • Do not convert layout structures into data-table markup just to satisfy a rule; the correct fix may be to remove table semantics entirely.
  • When several table-accessibility issues overlap, resolve the header-cell relationship first because downstream announcements depend on it.

Standards

  • Align the implementation with W3C WAI: WCAG Overview and verify the rendered experience, not only the source code.
  • Align the implementation with MDN: Accessibility and verify the rendered experience, not only the source code.

Verification

Automated Checks

  • Inspect the browser accessibility tree or accessibility pane for the relevant element, role, or accessible name.
  • Run an automated accessibility checker such as axe or Lighthouse where applicable.

Manual Checks

  • Test the affected UI with keyboard-only navigation and confirm the rule holds in the rendered experience.
  • Re-test one representative user flow with a screen reader if this rule affects a key interaction.

Use with AI

Copy these prompts to use with your AI assistant, or install the MCP server to use directly from Claude, Cursor, or Windsurf.

Check

Verify implementation

Verify that all `<th>` elements are correctly associated with data cells.

Fix

Auto-fix issues

Remove empty headers or ensure they are correctly mapped to data cells.

Explain

Learn more

Explain why every header must have associated data to maintain an accessible table structure.

Review

Code review

Review the rendered markup and interactive states that affect Ensure table headers associate with data cells. Flag exact elements, roles, labels, focus behavior, or keyboard interactions that violate the rule, and note how to verify the fix with browser accessibility tooling or assistive tech.

Sources

References used to support the guidance in this rule.

Further Reading

Tools and supplementary material for exploring the topic in more depth.

axe DevTools
deque.comTool

Rules that often go hand-in-hand with this one.

Use semantic table markup for screen readers

Data tables use proper semantic markup with headers, captions, and scope attributes for screen reader accessibility.

Accessibility
Define proper table headers

Checks that data tables have proper headers

Accessibility
Ensure tables have unique accessible names

Checks that data tables have unique accessible names

Accessibility
Ensure headings contain text

All heading elements (h1-h6) must have visible, descriptive content.

Accessibility

Was this rule helpful?

Your feedback helps improve rule quality. This stays internal for now.

Loading feedback...
0 / 385