我在這裏完全無能爲力。我有懸停功能在UL導航菜單上工作正常,但現在我試圖懸停一個按鈕,並在盯着我的代碼超過15分鐘後,我不明白...CSS3懸停不能用於更改按鈕圖像
這是我的HTML:
<div>
<a id="backbutton" href="services.html" title="Go back to Services">Go Back</a>
<br />
</div>
這是我的CSS3:
#backbutton {
display: block;
width: 200px;
height: 54px;
background: url('../images/BackButton.png') center center no-repeat;
text-indent: -9999px;
}
上面這一個是工作完全正常。文本消失,按鈕正常顯示。它不工作
#backbutton a:hover {
background: url('../images/BackButtonHover.png') center center no-repeat;
width: 200px;
height: 54px;
}
圖像下面的代碼不會取代我的目標懸停形象(是的,它被上傳我的服務器上。)
任何線索?
'#backbutton' *爲*了''元素。它看起來像你想'#backbutton:hover {...}'。 – showdev