Created
March 19, 2022 17:02
-
-
Save devzom/b7e02f91990d823f65d472757816d2bc to your computer and use it in GitHub Desktop.
CSS: Remove focus outline (when not using keyboard)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// removing the focus outline when not using | |
//keyboard navigation (the CSS :focus-visible selector is polyfilled here). | |
*:focus:not([data-focusvisible-polyfill]){ | |
outline: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment