input { background-image: url(../images/form/normal.png); width: 57px; height: 14px; } input:hover { background-image: url(../images/form/normal_hover.png); }
Lecz zaczołem potrzebować wykorzystać class w inputach no i pojawił się błąd:
gdy najadę na <input class="long"> powinno zmienić tło inputa na ../images/form/small_hover.png. Plik na pewno istnieje i jest grafiką

obecny css
input { background-image: url(../images/form/normal.png); width: 57px; height: 14px; } input:hover { background-image: url(../images/form/normal_hover.png); } input.long { background-image: url(../images/form/long.png); width: 96px; } input.long:hover { background-image: url(../images/form/small_hover.png); } input.smal { background-image: url(../images/form/small.png); width: 41px; } input.smal:hover { background-image: url(../images/form/small_hover.png); }
Lecz niestety nie działa
(jest to tylko fragmęt odpowiedzialny za inputy)