WCAG 1.4.10 Reflow — Testing Guide for Mobile & Web Apps

WCAG 1.4.10, known as "Reflow," is a critical guideline for ensuring that your web and mobile applications are usable by everyone, especially those with low vision or cognitive disabilities. At its co

January 26, 2026 · 6 min read · WCAG Guides

Ensuring Content Reflows Without Loss for All Users: A Guide to WCAG 1.4.10

WCAG 1.4.10, known as "Reflow," is a critical guideline for ensuring that your web and mobile applications are usable by everyone, especially those with low vision or cognitive disabilities. At its core, this criterion demands that content can be presented in a way that doesn't require horizontal scrolling when viewed at 400% zoom. This means users can access all information without needing to pan left and right, which is a significant usability barrier.

What WCAG 1.4.10 Requires in Plain Terms

Essentially, when a user magnifies your application's content to 400% of its normal size, all text and interactive elements should fit within the available screen width. There should be no need for horizontal scrolling to read a sentence or interact with a button. Vertical scrolling is acceptable and expected; the goal is to eliminate the need for side-to-side navigation.

Why WCAG 1.4.10 Matters: Real User Impact

This guideline directly impacts users with low vision who rely on screen magnification to perceive content. Without proper reflow, they are forced to constantly scroll horizontally, making it difficult to follow text, locate controls, and complete tasks. This can lead to frustration, abandonment of the application, and exclusion from essential services.

Consider a user with macular degeneration who uses a screen magnifier. If your checkout process requires horizontal scrolling to see the "Next" button, they might miss it entirely or struggle to find it repeatedly. This isn't just an inconvenience; it's a functional barrier that prevents them from completing a purchase or accessing information.

Beyond low vision, reflow benefits users with cognitive disabilities by reducing cognitive load. A simpler, more linear presentation of information can be easier to process and understand. This principle aligns with broader accessibility mandates like the EU's European Accessibility Act (EAA) and the Americans with Disabilities Act (ADA), which aim to ensure digital inclusion.

Common Violations and Examples

Violations of WCAG 1.4.10 are prevalent, particularly when responsive design isn't implemented with reflow in mind.

Mobile App Violations:

Web App Violations:

How to Test for WCAG 1.4.10 Compliance

Testing for reflow requires a combination of manual inspection and automated tools.

#### Manual Testing Steps

  1. Zoom to 400%: Use your browser's built-in zoom functionality (Ctrl/Cmd + '+') or your operating system's magnification tools.
  2. Observe Content: Navigate through all key screens and content areas of your application.
  3. Check for Horizontal Scrolling: Actively look for any instance where you need to scroll left or right to see the full content of a sentence, a block of text, an image, or an interactive element.
  4. Test Interactive Elements: Ensure that buttons, links, form fields, and other controls are fully visible and usable without horizontal scrolling.
  5. Test Different Content Types: Pay close attention to text, images, tables, forms, and any embedded media.

#### Automated Tools

While no automated tool can perfectly replicate the nuanced experience of a human user at 400% zoom, several can help identify potential issues:

#### Mobile-Specific Considerations

How to Fix WCAG 1.4.10 Violations

The primary approach to fixing reflow issues is through responsive design techniques.

Code Examples:

CSS for Flexible Images:


img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevents extra space below the image */
}

CSS for Responsive Tables (using a container):


<div class="table-container">
  <table>
    <!-- table content -->
  </table>
</div>

.table-container {
  overflow-x: auto; /* Allows horizontal scroll only within this container */
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

How SUSA Checks for WCAG 1.4.10

SUSA's autonomous QA platform tackles WCAG 1.4.10 by integrating accessibility testing into its exploration process. When you upload an APK or provide a web URL, SUSA simulates user interactions across various personas, including the "Accessibility" persona designed to trigger and test for these specific issues.

Test Your App Autonomously

Upload your APK or URL. SUSA explores like 10 real users — finds bugs, accessibility violations, and security issues. No scripts.

Try SUSA Free