Level AAPerceivableNew in 2.1
1.4.10

Reflow

Content has to reflow into a single column on a narrow screen (or high zoom), with no two-directional scrolling to read.

In plain English

On a narrow screen, like a small phone or a zoomed-in desktop, content should stack into one readable column. Nobody should have to scroll left-and-right on every line to read a paragraph. That side-to-side scrolling is exactly what this rule forbids.

The magic width is 320 pixels (the same as your desktop zoomed to 400%). At that width, text and controls should reflow, not overflow.

Who this is for

  • People who zoom in to read: at high zoom, a desktop becomes a narrow viewport, and reflow is what keeps it usable.
  • Mobile shoppers on small phones.
  • Anyone using a browser window that isn’t full width.

What “good” looks like

Use responsive CSS so the layout collapses gracefully instead of overflowing.

/* Good: fluid, reflows to one column on narrow screens */
.grid { display: flex; flex-wrap: wrap; }
.product-image { max-width: 100%; height: auto; }

/* Bad: fixed width forces horizontal scrolling */
.container { width: 1200px; }

Test it: set your browser to 320px wide (or zoom to 400%) and read a product page. If you’re scrolling sideways to finish a sentence, it fails.

Where stores get it wrong

Fixed-width sections, wide tables that don’t wrap or scroll on their own, and oversized images that push the page wider than the screen. These force the whole page to scroll horizontally, a frequent entry on the common failures list.

How to meet it

Techniques the W3C accepts as sufficient (summarized). Follow a link for the full method.

Common mistakes

Patterns the W3C lists as failures of this criterion. Avoid these.

Frequently asked questions

What is reflow in WCAG?+

Success Criterion 1.4.10 (Level AA, added in WCAG 2.1) says content must be usable at a width equivalent to 320 CSS pixels without needing to scroll in two directions. In practice, content should reflow into a single column instead of forcing horizontal scrolling.

What width does reflow use?+

320 CSS pixels wide (which is 1280px zoomed to 400%). That width matches a common small phone, so meeting reflow largely means being genuinely responsive.

Are there exceptions to reflow?+

Yes. Things that truly need a two-dimensional layout, like data tables, complex images, maps, and toolbars that must stay in place, are allowed to scroll in both directions. Ordinary content is not.

Reference

This is a plain-language explainer. The authoritative source is the W3C Web Content Accessibility Guidelines (WCAG) 2.2.

WCAG 2.2 © W3C. Excerpts are paraphrased; see the linked documents for the normative text.

Not sure if your store passes 1.4.10?

A human auditor checks this and every other criterion against your live store, and documents the result.

Book an audit