Accessibility Wiki

A form field should not have multiple label elements

Rule form-field-multiple-labels · Forms · impact moderate · Static + live

↩ Back to the rules index · WCAG cross-reference

Why it matters

When several

How to fix

Use a single

Example

✕ Fails
<label for="q">A</label><label for="q">B</label><input id="q">
✓ Passes
<label for="q">Search</label><input id="q" aria-describedby="hint"><span id="hint">B</span>

WCAG success criteria

3.3.2 Labels or Instructions — Level A

Inputs need labels or instructions so users know what to enter.

Understanding 3.3.2

Standards

This rule contributes to the following standards:

WCAG A EN 301 549 Trusted Tester

Standard Criteria
EN 301 549 9.3.3.2
Trusted Tester v5 5.c

References