user1026305
user1026305

Reputation: 7

How do I make a visited link change color on hover using CSS or JS

How do I make a visited link change color on hover using CSS or JS

Thanks for the help

Upvotes: 1

Views: 1031

Answers (2)

Damon Bauer
Damon Bauer

Reputation: 2726

If I understand your question correctly, you would style it using

a:visited:hover {
    styles go here
}

Upvotes: 2

Marc B
Marc B

Reputation: 360572

a {
   color: blue;
}

a:visited {
   color: red;
}

Upvotes: 2

Related Questions