回答をメールで送信するフォームを作成しましたが、「送信」ボタンに変更するまでは問題ありませんでした。「送信」画像は問題ありませんが、その上にカーソルを合わせると、ホバー画像が表示されません。これが私のコードです。どこが間違っていますか?
/*buttons*/
.submitbut {
background: url("images/z_submit.jpg") no-repeat; border: none;
display: block;
width: 62px;
height: 36px;
}
.submitbut:hover {
background: url("images/z_submit_roll.jpg") no-repeat; border: none;
background-position: 0px -50px;
display: block;
width: 62px;
height: 36px;
}
そして、私が持っているhtmlコードは...
<input type="submit" class="submitbut" value="" />