Content must reflow without horizontal scrolling
Rule
reflow· Deeper checks · impact serious · Live only (static → incomplete)
Why it matters
At 320 CSS px wide (a phone, or 400% zoom on desktop), content must not require horizontal scrolling. Fixed-width layouts force users to scroll in two dimensions to read every line. Content that requires a two-dimensional layout for usage or meaning — data tables, images, video, maps, diagrams, toolbars — is exempt per the SC and reported as pass.
How to fix
Use responsive, fluid layouts; avoid fixed pixel widths wider than the viewport.
Example
<div style="width:1200px">Fixed width</div>
<div style="max-width:100%">Fluid width</div>
WCAG success criteria
1.4.10 Reflow — Level AA
Content must reflow to a 320 CSS-px viewport without requiring two-dimensional (horizontal) scrolling.
Standards
This rule contributes to the following standards:
WCAG AA EN 301 549
| Standard | Criteria |
|---|---|
| EN 301 549 | 9.1.4.10 |