Created
May 30, 2022 09:43
-
-
Save justxor/aa83a0be2f246a1390ed88f55bfa071d to your computer and use it in GitHub Desktop.
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
:link { | |
outline: 1px dotted blue; | |
background-color: white; | |
/* The default value of background-color is `transparent`. You need to | |
specify a different value, otherwise changes on :visited won't apply. */ | |
} | |
:visited { | |
outline-color: orange; /* Visited links have an orange outline */ | |
background-color: green; /* Visited links have a green background */ | |
color: yellow; /* Visited links have yellow colored text */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment