Inappropriate Zoomed Text Visibility Check

RuleSets of AccessMonitor - the validator of web accessibility practices

Inappropriate Zoomed Text Visibility Check

Description

The “Inappropriate Zoomed Text Visibility Check” evaluates whether any elements using CSS overflow properties (e.g., hidden, scroll, auto) do not cause essential text to be clipped or hidden when the page is zoomed up to 200%.

Example outcome

I found 1 text node with a CSS overflow property that might prevent a user from seeing the text when the page is zoomed.

Impact

Fixes

To address inappropriate text visibility on zoom:

  1. Avoid using overflow: hidden on containers with readable content, especially when widths/heights are fixed.
  2. Instead of clipping content, let it adapt or wrap.
  3. Allow content to grow as needed to accommodate zoom.

Resources