What does this mean?
All controls on the page - including links, buttons, and fields - should show when they have been selected by the keyboard.
More helpYou can confirm this yourself by loading a webpage and using the Tab key to navigate through it. Anything you can select should alter its appearance when selected. For example, a text field might change color, or have a distinctive border applied.
This is default behavior for all standard web controls, and so if this issue is appearing it is because this default behavior has been disabled. Or alternatively, if you have written your own custom controls, these will need styling to support focus states.
To comply, links and form controls typically define an outline
CSS style, which ensures
they are highlighted automatically, for example:
input:focus (outline: 2px solid red);
If you choose to override or disable the default outline
, you should specify an accessible
alternative, such as a border or background color.
Troubleshooting
If the page appears to highlight when you use tabbed browsing, try testing the page with JavaScript disabled.
61.3% done
How close this website is to fixing this issue.
HTML | Found on page | Issues |
---|---|---|
<button class="c-dropdown__dropbtn">
|
28 | |
<button type="button" class="plyr__control" data-plyr="mute">
|
22 | |
<button class="plyr__controls__item plyr__control" type="button" data-plyr="play" aria-label="Play">
|
15 | |
<button class="plyr__controls__item plyr__control" type="button" data-plyr="fullscreen">
|
13 | |
<div tabindex="0" class="plyr plyr--full-ui plyr--video plyr--vimeo plyr--fullscreen-enabled plyr--paused plyr--stopped">
|
12 | |
<a href="/investors" target="" class="main-nav__link main-nav__link--next js-main-nav__link--next">
|
8 | |
<div tabindex="0" class="plyr plyr--full-ui plyr--video plyr--youtube plyr--fullscreen-enabled plyr--paused plyr--stopped plyr__poster-enabled">
|
8 | |
<a href="/about" target="" class="main-nav__link main-nav__link--next js-main-nav__link--next">
|
6 | |
<a href="/careers" target="" class="main-nav__link main-nav__link--next js-main-nav__link--next">
|
4 | |
<div tabindex="0" class="plyr plyr--full-ui plyr--video plyr--vimeo plyr--fullscreen-enabled plyr--paused plyr--stopped plyr__poster-enabled">
|
3 |