Last active
August 27, 2019 14:33
-
-
Save seanrankin/24b3867282c748c4ae2aa0d73fe8a5c2 to your computer and use it in GitHub Desktop.
CSS Tricks
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
/* 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