Visited link state
Once users click a link, it changes to a visited state. By default, it's purple and underlined, but you can change its style too. In this case, you'll need the a:visited
value:
style
a:visited {
color: pink;
}
Keep these 3 things in mind:
• The visited state should differ from an unvisited state
• It should contrast enough against the background
• It should look clickable[1]
References
- Guidelines for Visualizing Links | Nielsen Norman Group