• Success Criterion 1.3.1
  • Conformance level A

Table Header Cells Left Completely Blank

1.3.1 — Info and Relationships

Scenario

Setting

A job board's application form

What’s wrong

Empty table header cells (header-cell code (th) with no text) leaving columns/rows unnamed for header–cell association.

Example

<div class="heading">Shipping Address</div>

Why it matters

Screen-reader, braille, and reading-tool users who depend on coded structure rather than visual layout.

How to test

Navigate a data table with a screen reader's table mode: empty th cells announce as blank column/row names — check every header cell has text.

How to fix

Fill every header-cell code (th) with header text (or use td for cells that aren't headers).

<h2>Shipping Address</h2>

A real heading element exposes the section structure to assistive tech; a styled div doesn't.

Outcome

On a job board's application form, this barrier is gone for screen-reader, braille — they get the same result as anyone else here.

Who is affected

Screen-reader, braille, and reading-tool users who depend on coded structure rather than visual layout.

Learn more