Hola
miraslav
Hay una forma de hacerlo:
<style tyle="text/css">
.boton {border:1px solid red; background:yellow}
.boton:hover {background:blue}
</style>
Pero en IE no funciona, tendrías que usar JavaScript
:
Código:
<input type="button" onmouseover = "this.style.background='blue'" onmouseout = "this.style.background='yellow'" />
Saludos,