Created
September 6, 2019 18:35
-
-
Save solarsailer/5f49bae5f294cd84d9de9a891e499f90 to your computer and use it in GitHub Desktop.
LVHA order for predictable colors on links
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
a { | |
color: COLOR; | |
} | |
a:visited { | |
color: COLOR; /* Optional, especially on SPA apps. */ | |
} | |
a:hover { | |
color: COLOR; | |
} | |
a:active, | |
a:focus { | |
color: COLOR; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment