Link visted hover : a.hover « Tags « HTML / CSS






Link visted hover

    
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
    <head>
        <style type="text/css">
            a:link {
                background: blue;
                color: white;
            }
            a:visited {
                background: crimson;   
                color: pink;
            }
            a:hover {
                background: black;
                color: white;
            }
        </style>
    </head>
    <body>
        <a href='http://www.google.com'>Google</a> | 
        <a href='http://www.wrox.com'>Wrox</a> | 
        <a href='http://www.php.net'>PHP</a> | 
        <a href='http://www.quirksmode.org'>Quirks Mode</a>
    </body>
</html>

   
    
    
    
  








Related examples in the same category

1.a:hover text-decoration:underline;
2.a:hover background-color:#ccffff;
3.a:hover, a:active text-decoration: underline overline;
4.Link visted hover active
5.Link visted hover active focus
6.a:hover text-decoration:underline; background-color:#ccffff;
7.A link with a title attribute - hover over the link to see the tooltip appear
8.a:hover text-decoration: none;
9.a:hover color: #369;
10.a:hover background: inherit;
11.Update image while mouse hover
12.a:hover {color: red; text-decoration: underline;}
13.Anchor with solid background, and hover effect
14.anchor based mouse hover effect
15.Hover Anchor Style inside a LI
16.Change Anchor underline decoration when mouse hover
17.Change background position for anchor when mouse hover
18.a:hover color: #B29B35;
19.a:hover color: yellow;