# Frames with focusable content must not have tabindex=-1

> Canonical HTML version: https://rocketvalidator.com/accessibility-validation/axe/4.7/frame-focusable-content
> Attribution: Rocket Validator (https://rocketvalidator.com)
> License: CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/)

`tabindex="-1"` cannot be present in `<frame>` and `<iframe>` elements with focusable content.

The browser is unable to move the focus to the content included in a frame when it has a negative tabindex. This stops keyboard navigation from skipping all of its content, and if the frame is scrollable, it also prevents the focus from moving to any element from which the frame may be scrolled.

<h3>What this Accessibility Rule Checks</h3>

Examine all `frame` and `iframe` elements that contain a negative tabindex value, such as `tabindex="-1"`. If there are any such frames, make sure they don't have nested frames that do contain focusable items.
