Skip to content

Instantly share code, notes, and snippets.

@seanrankin
Last active August 27, 2019 14:33
Show Gist options
  • Save seanrankin/24b3867282c748c4ae2aa0d73fe8a5c2 to your computer and use it in GitHub Desktop.
Save seanrankin/24b3867282c748c4ae2aa0d73fe8a5c2 to your computer and use it in GitHub Desktop.
CSS Tricks
/* Keyboard use will show focus, mouse clicks won't */
:focus:not(:focus-visible) {
outline: none;
}
/* A nice way to prevent hover events from sticking on mobile */
@media (hover: hover) {
a:hover {
background: yellow;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment