Pseudo-class Selectors for anchor : Anchor class : Basic Tags HTML CSS TUTORIALS


HTML CSS TUTORIALS » Basic Tags » Anchor class »

 

Pseudo-class Selectors for anchor


 


<!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">
{
  padding: 3px 10px;
  margin: 20px 10px;
  text-decoration: none;
  display: block;
  width: 260px;
  border-left: 1px solid #ccc;
  border-right: 2px solid black;
  border-top: 1px solid #ccc;
  border-bottom: 2px solid black;
}

a:link {
  color: black;
  background-color: white;
}

a:visited {
  color: gray;
  background-color: white;
}

a:hover {
  color: white;
  background-color: #aaa;
}

a:active,a:focus {
  color: green;
  background-color: #bbb;
}
</style>
</head>
<body>


<p> 
<a href="http://www.navioo.com">a:link -- unvisited link</a> 
<a href="http://www.navioo.com">a:visited -- visited link</a> 
<a href="http://www.navioo.com">a:hover -- mouse hovering</a> 
<a href="http://www.navioo.com">a:active -- visiting a link</a> 
</p> 


</body
</html>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Basic Tags
» Anchor class