- Success Criterion 1.4.10
- Conformance level AA
Carousel Slide Content Cut Off With No Way to Reach It
1.4.10 — Reflow
Scenario
Setting
A university's online course catalog
What’s wrong
Carousels whose slide content is cut with no alternative path to it.
Example
.course-carousel { width: 100%; overflow: hidden; }
.course-slide { width: 800px; flex-shrink: 0; } /* card text is cut off at 320px with no scroll or next control visible */ Why it matters
At mobile width, the description inside each fixed 800px slide is clipped by overflow: hidden, and no visible control lets the student reach the rest.
How to test
Set the viewport to 320px and check carousel/slider content: if slide content is cut off with no alternative way to reach the full content, it fails.
How to fix
Size each slide to its container and provide visible, reachable next and previous controls so no content stays trapped.
.course-carousel { overflow: hidden; }
.course-slide { width: 100%; }
.course-slide .description { white-space: normal; }
<button class="carousel-next" aria-label="Next course">Next</button> Outcome
A student swipes to see the full course description instead of losing the second half behind a clipped card.
Who is affected
Mobile students can't read a course's full description or requirements, and have no alternate way to view the cut-off content.
Learn more
- Understanding Understanding document (opens in a new tab)
Related scenarios
- Content or Controls That Vanish Entirely When the Page Reflows
- Vertical Content That Forces Horizontal Scrolling at 320px
- Fixed-Width Container Forcing Scrolling in Two Directions
- Overlapping Content When the Page Is Zoomed to 400%
- Sticky Bars That Eat Up Most of a 320px Mobile Screen
- Desktop Breakpoint That Never Switches to Mobile Layout