2012-09-22 66 views
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=""> 

回答

19

檢查這個link。您在myButton之前缺少.。這是一個小錯誤。 :)

.myButton{ 
    background:url(./images/but.png) no-repeat; 
    cursor:pointer; 
    border:none; 
    width:100px; 
    height:100px; 
} 

.myButton:active /* use Dot here */ 
{ 
    background:url(./images/but2.png) no-repeat; 
} 
+0

oh shooot!謝謝你,先生! – user1666411

+0

沒問題,只是upvote它,並接受作爲答案:) –

+0

所有得到.myButton類的按鈕將改變... –