我想在翻滾時將圖像按鈕從綠色更改爲黃色。如何更改鼠標懸停上的圖像按鈕
這裏是我的CSS代碼
a#try-it-button {
width:273px;
height:47px;
margin-left:25px;
margin-top:372px;
background:url(../image/try-it-green.png);
}
a#try-it-button:hover {
width:273px;
height:47px;
margin-left:25px;
margin-top:372px;
background:url(../image/try-it-orange.png);
}
a.alt { display: none; }
我的HTML代碼
<div id="y-moringa">
<a id="try-it-button" href="#"><span class="alt"></span></a>
</div>
在此先感謝。
它以什麼方式不起作用?如果鏈接('a')具有可見內容,那麼這應該[已經工作](http://jsfiddle.net/davidThomas/hR589/)只使用CSS。 –