Last active
January 17, 2016 16:01
-
-
Save yakovsh/f5bbf6ba9f6e21de8d5e to your computer and use it in GitHub Desktop.
Making Visited Links Look the Same as Unvisited 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
/* | |
One of our customers had recently requested a feature to make all links look the same, visited or unvisited. | |
While debates and complaints have been raised about whether they should look the same, in our case this was | |
necessary. A web application such as ours usually dynamically generated all the content. That means that | |
links may stay static but their content changes. Therefore, visited links make no sense in a dynamic system. | |
In any case, the way I made them look the same is via the following piece of CSS | |
*/ | |
A:link {color: blue} | |
A:visited {color: blue} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment