Making accessibility standards easy to understand, one success criterion at a time.

WCAG 2.2 Level AA

2.4.11 Focus Not Obscured (Minimum)

The keyboard focus is not completely hidden by other content.

Keyboard
Cognitive, Physical/Motor, Visual
Code, Design

What is it?

Any item receiving keyboard focus should always be at least partially visible on the user’s browser window. This guarantees that focused elements are not completely hidden by other content like sticky headers, footers, or modals. And, while it’s best to keep the elements fully visible, it’s not required at the AA level.

An example of a 'Contact Us' button receiving focus, but a sticky banner obscures the top half of it, making it harder for users to interact.

Why does it matter?

When focused elements are hidden or blocked from view, users relying on keyboards or assistive technology can't tell where their interaction is happening. This makes it harder to navigate and complete tasks, leading to frustration. Hidden elements can also make it seem like the system isn't responding.

Who is affected?

People who rely on keyboards or assistive technology to navigate. People with low vision. And people with cognitive disabilities.

People who navigate via keyboard or devices using keyboard-like input (e.g., voice control, sip-and-puff devices) need to see the focused element to understand their position on the page.

People with low vision who rely on magnified screens often see pages with reduced content. Ensuring that focused elements remain visible prevents them from being hidden or cropped.

People with cognitive disabilities need clear visual indicators of focus, which reduce confusion and help users stay oriented while navigating.

How to implement 2.4.11

Test Focus Visibility

As users tab through a page, all focused elements should remain at least partially visible. Make sure other content, such as modals, banners, or dialogs, doesn’t fully block focused elements.

  • Design modal dialogs to take focus when they appear and prevent interaction with underlying content. This prevents hidden interactive elements behind the modal from taking focus.
  • Ensure notifications like cookie banners are dismissible, preventing them from obscuring focusable elements.
  • Check content magnified up to 200%, according to WCAG 1.4.4 Resize Text (Level AA), to ensure the resized layout doesn’t hide interactive elements.

Scroll Padding with CSS

The scroll-padding property in CSS helps ensure focused elements remain visible when navigating a page. This property sets space around the scrollable area to prevent elements from being obscured by fixed components like sticky headers or footers.

In this example, the scroll-padding-top and scroll-padding-bottom values adjust the page layout to ensure interactive elements, like form fields or buttons, are visible when focused. As a bonus, the scroll-behavior property helps create smooth scrolling transitions so the sudden shift isn’t too harsh.

html {
scroll-padding-top: 100px; /* Space for a sticky header */
scroll-padding-bottom: 50px; /* Space for a sticky footer */
}
/* Example usage for smooth keyboard navigation */
body {
scroll-behavior: smooth;
}

CSS padding being applied for a button receiving focus with the scroll-padding property.

Auto Scrolling with JavaScript

Most modern browsers automatically scroll focused elements into view, so additional scripting is usually not necessary. However, in some cases—such as with custom components, overlays, or long forms—default browser behavior may not work as expected. For these scenarios, you can use JavaScript to ensure focused elements remain visible.

Conclusion

Making sure focused elements are at least partially visible is a simple way to make interfaces more accessible and user-friendly. Following WCAG 2.4.11 - Focus Not Obscured (Minimum) helps remove barriers for keyboard users, people with low vision, and anyone with cognitive challenges. Using tools like scroll-padding in CSS and some JavaScript tweaks, you can create smoother, easier navigation.

Table of Contents