Código HTML:
<style type="text/css"> input.azul { background-color:blue; } </style>
Código HTML:
<input type="text" size="25" style="background: url(imagenes/imagen.png) no-repeat center right; background-color:blue;">
Código HTML:
<input type="text" size="25" style="background-color:blue; background: url(imagenes/imagen.png) no-repeat center right;">
Código HTML:
<input type="text" size="25" style="background: url(imagenes/imagen.png) no-repeat center right;" class="azul">
Código HTML:
<input type="text" size="25" class="azul" style="background: url(imagenes/imagen.png) no-repeat center right;">
Pero, ¿Por qué el class es indiferente antes o después?
Todo esto viene a que quiero que el input tenga color de fondo y también una imagen de fondo, así que si hay otra forma también la podéis comentar (otra forma sería que la imagen ocupase el tamaño del input y ya incluyese el color, pero no me parece solución)