Skip to content

Instantly share code, notes, and snippets.

@devzom
Created March 19, 2022 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devzom/b7e02f91990d823f65d472757816d2bc to your computer and use it in GitHub Desktop.
Save devzom/b7e02f91990d823f65d472757816d2bc to your computer and use it in GitHub Desktop.
CSS: Remove focus outline (when not using keyboard)
// 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