Created
August 1, 2017 14:58
-
-
Save zachleat/073adbf8e3234cc9f8c9b037656df517 to your computer and use it in GitHub Desktop.
Trying to use CSS `:any-link`
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
/* This is what I did before */ | |
:link, | |
:visited { color: blue; } | |
/* The future liberals want */ | |
:any-link { color: blue; } | |
/* Harsh Reality */ | |
:-moz-any-link { color: blue; } | |
:-webkit-any-link { color: blue; } | |
:any-link { color: blue; } | |
:link, | |
:visited { color: blue; /* Backwards compatible for IE/Edge */ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment