• Success Criterion 1.3.2
  • Conformance level A

Multi-Column Article Whose Code Order Interleaves the Columns

1.3.2 — Meaningful Sequence

Scenario

Setting

A budget airline's flight search results

What’s wrong

float-based multi-column article where page code (DOM) reading order interleaves columns nonsensically.

Example

.step-2 { order: 1; } .step-1 { order: 2; } /* visual order ≠ DOM order */

Why it matters

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

How to test

Disable CSS on a multi-column article laid out with float: check whether the reading order interleaves the columns into a nonsensical sequence.

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.

<!-- DOM order matches the order the CSS makes visible: step-1, then step-2 -->

When CSS reorders content visually, the underlying DOM order must still match, or the reading order breaks.

Outcome

On a budget airline's flight search results, this barrier is gone for screen-reader and keyboard users who encounter content in DOM order — they can finish what they came here to do.

Who is affected

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

Learn more