Hover kan godt bruges men understøttes først i IE fra version 7.
Dette er et lille eksemple som vil virke i IE7 og FF
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>Untitled</title>
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
margin: 0;
padding: 0;
}
div.test:hover {
background: lightgreen;
}
ul.test li:hover {
background: lightblue;
}
-->
</style>
</head>
<body>
<div class="test">
<ul class="test">
<li>List 1</li>
<li>List 1</li>
<li>List 1</li>
</ul>
</div>
</body>
</html>