You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On pages like Menu (Dropdown) where there are code blocks that can scroll vertically and horizontally, there is no way for keyboard-only users to scroll those areas and view all of the content in them.
This issue falls under WCAG 2.1 Success Criterion 2.1.1 Keyboard (Level A). It can be fixed by adding the tabindex="0" property to the scrollable regions. This will enable the region to be reachable via keyboard, and then the arrow keys can be used to scroll the content.
Here is a screenshot from the top of the linked page showing a code block that scrolls in both directions:
The text was updated successfully, but these errors were encountered:
On pages like Menu (Dropdown) where there are code blocks that can scroll vertically and horizontally, there is no way for keyboard-only users to scroll those areas and view all of the content in them.
This issue falls under WCAG 2.1 Success Criterion 2.1.1 Keyboard (Level A). It can be fixed by adding the
tabindex="0"
property to the scrollable regions. This will enable the region to be reachable via keyboard, and then the arrow keys can be used to scroll the content.Here is a screenshot from the top of the linked page showing a code block that scrolls in both directions:
The text was updated successfully, but these errors were encountered: