Her er et lille eksempel på den effekt med at få knapperne til at skifte farve.
HansGeist
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>Menu</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
#menu a {width: 180px; padding: 0 3px;}
#menu a:link, #menu a:visited {
color: #fff;
display: block;
background-color: #FF9900;
border: 1px solid #eee;
text-decoration: none;
}
#menu a:hover, #menu a:active {
background-color: #fff;
border: 1px solid #666;
color: #999;
}
</style>
</head>
<body>
<!-- Menu html starter her -->
<div id="menu">
<h2>Menu</h2>
<p>Dette er test links:</p>
<p><a href="#">Test Link 1</a></p>
<p><a href="#">Test Link 2</a></p>
<p><a href="#">Test Link 3</a></p>
<p><a href="#">Test Link 4</a></p>
<p>Her kan du placere yderligere indhold.</p>
<!-- her slutter menu html -->
</div>
</body>
</html>