• Success Criterion 3.3.2
  • Conformance level A

Date Field Split Into Boxes With No Individual Labels

3.3.2 — Labels or Instructions

Scenario

Setting

A used-car marketplace's listing filter

What’s wrong

Multi-field constructs (day/month/year) with a single distant label and unlabeled parts.

Example

<input type="text" placeholder="Full name">

Why it matters

Everyone filling forms, especially people with cognitive disabilities and magnifier users.

How to test

Look at a multi-field construct (day/month/year as three boxes): check whether each individual box has its own accessible name, not just one distant label for the whole group.

How to fix

A persistent visible label must be provided, required status must be marked visually AND programmatically (with any symbol explained), and format rules stated before input.

<label for="name">Full name</label>
<input type="text" id="name" placeholder="e.g. Jane Smith">

A persistent visible label survives once the user starts typing; a placeholder alone disappears.

Outcome

On a used-car marketplace's listing filter, this barrier is gone for everyone filling forms — they no longer have to work around this.

Who is affected

Everyone filling forms, especially people with cognitive disabilities and magnifier users.

Learn more