Spaces between rollover/mouseover images?

why don't you try css rollover instead?

ie:

Code:
<html>
<head>
<title>Page title</title>
<style>
.square{width: 100px;height: 100px;}
a:hover{background-color: black}
a{background-color: yellow}
</style>
</head>
<body>
<a href=""><div class="square"></div></a>


</body>
</html>
 
Last edited:
Back
Top Bottom