6
我試圖用class="myButton"
中的圖像替換提交按鈕,並更改CSS中的樣式。單擊時,myButton:active
似乎不起作用。在CSS中設置圖像按鈕 - 圖像:活動
這裏是我的CSS:
.myButton{
background:url(./images/but.png) no-repeat;
cursor:pointer;
border:none;
width:100px;
height:100px;
}
myButton:active {
background:url(./images/but2.png) no-repeat;
}
HTML代碼:
<input class="myButton" type="submit" value="">
oh shooot!謝謝你,先生! – user1666411
沒問題,只是upvote它,並接受作爲答案:) –
所有得到.myButton類的按鈕將改變... –