Is there any quick way to make an :visited
link the same color of the link itself?
For example:
* {color:black}
a:link {color:blue}
a:visited {color:inherit}
When I visit the link, this css turns the link on to black.
But I want to preserve the original color of the link (blue, in this case).
I think I can do something like:
a:link, a:visited {color:blue}
But, I have a huge css with many links, with different colors, and without comments from the stupid damned designer who coded this a year ago (me). Apply that solution will be a nightmare, because there are a hundred styles for links.
So... is there any way to override :visited
color with the "original" color, without changing the whole stylesheet?
(This is a possible duplicate of this question, but none of the given answers works, and I can't use JS (client requirements).)