Use a:visited to select a hyperlink when it has been visited : a.class « CSS « HTML / CSS






Use a:visited to select a hyperlink when it has been visited

  

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
a:visited {
  color: gray;
  background-color: white;
}
</style>
</head>
<body>


<p> 
<a href="http://www.java2s.com">a:visited -- visited link</a> 
</p> 


</body> 
</html>

   
  








Related examples in the same category

1.Use a:link to select a hyperlink when it has not been visited.
2.Use a:hover to select a hyperlink when the mouse hovers over it.
3.Use a:focus to select a hyperlink when it receives focus in other browsers.
4.Use a:active to select a hyperlink when it receives focus in IE.
5.style links: link, visited, hover, focus, active
6.Link types