Use a:focus to select a hyperlink when it receives focus in other browsers. : a.class « CSS « HTML / CSS






Use a:focus to select a hyperlink when it receives focus in other browsers.

  

<!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 {
  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:active{
  color: green;
  background-color: #bbb;
}
</style>
</head>
<body>


<p> 
<a href="http://www.java2s.com">a:active</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:visited to select a hyperlink when it has been visited
3.Use a:hover to select a hyperlink when the mouse hovers over it.
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