Estoy creando un formulario para enviar por correo los datos, pero quiero hacer una cosa que con IE (para variar) no funciona porque solo acepta :hover en links (<a>), bueno, al grano ;)
La cuestión es poner una imagen de fondo a un boton, y al pasar el mouse por encima que cambie, lo he hecho de la siguiente forma:
Código PHP:
El boton:
<input name="submit" type=submit class=boton value = "Reservar">
El css:
.boton {
width: 95px;
color:#776655;
font-size: 11px;
height: 30px;
border-width:0px;
text-align:center;
font-weight:bold;
background: url(../images/boton.gif) no-repeat;
}
.boton:hover {
width: 95px;
color:#000;
font-size: 11px;
height: 30px;
border-width:0px;
text-align:center;
font-weight:bold;
background: url(../images/boton_hover.gif) no-repeat;
}
Alguna alternativa que no sea <a href=# class=boton></a> ??
Saludos!!!!