Bedoel je dit?
Code:
<HTML>
<Style>
.MouseOver {background-Color: #eeee10; border: #000000;
cursor:hand;
position:absolute;
width:39px; height:46px;
color: #eeeee9;
border-style: solid;
border-color: #000000;
border-width: 1px;
}
.MouseOut {
cursor:hand;
position:absolute;
width:39px; height:46px;
background-color:#eeeeee;
color: #FFffff;
border-style: solid;
border-color: #000000;
border-width: 1px;
}
</STYLE>
</HEAD>
<BODY>
<div class="MouseOut" style= "z-index:0; left: 38px; top: 96px" OnMouseOver = "this.className = 'MouseOver';" OnMouseOut ="this.className = 'MouseOut'></div>
</BODY>
</HTML>
Een button gemaakt met behulp van CSS en Layers