18/12/2013, 03:32
|
| | Fecha de Ingreso: noviembre-2008 Ubicación: Sevilla
Mensajes: 157
Antigüedad: 16 años Puntos: 2 | |
Respuesta: cambiar color input button Esta es la solucion:
Código:
.boton{
background-color:#colorBase;/* for non-css3 browsers */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#colorInicial', endColorstr='#colorFinal'); /* for IE */
background: -webkit-gradient(linear, left top, left bottom, from(#colorInicial), to(#colorFinal)); /* for webkit browsers */
background: -moz-linear-gradient(top, #colorInicial, #colorFinal); /* for firefox 3.6+ */
}
Saludos |