• Success Criterion 1.3.2
  • Conformance level A

Form Instructions Placed After the Fields They’re Meant to Explain

1.3.2 — Meaningful Sequence

Scenario

Setting

A calendar app's event-creation form

What’s wrong

Multi-step forms where visually-first instructions come after the fields in page code (DOM).

Example

Here's a real case from a calendar app's event-creation form: multi-step forms where visually-first instructions come after the fields in page code (DOM).

Why it matters

Screen-reader and keyboard users who encounter content in DOM order. On a calendar app's event-creation form, this barrier means they can't tell what's going on without extra effort.

How to test

Disable CSS on a multi-step form: check whether instructions appear before their related fields in the DOM — instructions coded after the fields they govern arrive too late for screen reader users.

How to fix

The screen reader must read content in an order matching the visual/logical order, item by item — nothing skipped, merged, fragmented, or added.

Outcome

Corrected, a calendar app's event-creation form now lets a visitor move through the content with confidence.

Who is affected

Screen-reader and keyboard users who encounter content in DOM order.

Learn more