Reputation: 7
How do I make a visited link change color on hover using CSS or JS
Thanks for the help
Upvotes: 1
Views: 1031
Reputation: 2726
If I understand your question correctly, you would style it using
a:visited:hover {
styles go here
}
Upvotes: 2