Witam serdecznie,
Mam taki formularz:
<form action="kontakt.html" method="post"> <input type="text" value="" name="imie"/> <input type="text" value="" name="nazwisko"/> <input type="text" value="" name="telefon"/> <input type="text" value="" name="kontakt"/> <label style="position:relative; left:10px; "> <textarea name="tresc" style="position:relative;left:9px; width:421px;height: 207px;top:-3px"></textarea> <button type="submit" value="" class="zapiszz333"/>
i do tego kod CSS:
button.zapiszz333{
display: block;
width: 87px;
height: 35px;
background-image: url(images/sender.png);
overflow: hidden;
cursor: pointer;
margin:1px -15px -0px 270px;
}
button.zapiszz333:hover{
display: block;
width: 87px;
height: 35px;
background-image: url(images/sender.png);
overflow: hidden;
margin-left: -60px;
cursor: pointer;
margin:1px -15px -0px 270px;
}
obrazek wygląda tak:

Chciałbym żeby po najechaniu myszką była widoczna wersja podświetlona napisu,a momencie gdy nie jest - to bez podświetlenia...
Wie ktoś może co robię nie tak??

North