0
我有這種佈局,當我指向它時(使用懸停),我希望打印機圖像切換到另一個圖像,但是當它指向它時開始閃爍在上面。我在所有瀏覽器中都有同樣的問題,所以我做了一些錯誤的事情,但是什麼?當我指向它時我的圖像開始閃爍(懸停)
<a href="http://" class="printer" target="_new"></a>
a.printer:link, a.printer:visited{
width: 30px;
height: 30px;
background-image: url(images/printerblue.png);
background-size:100% 100%;
position: absolute;
left: 150px;
top:-15px;
}
a.printer:hover{
width: 30px;
height: 30px;
background-image: url(images/printergreen.png);
background-size:100% 100%;
position: absolute;
left: 150px;
top:-150px;
}
哈哈哈,謝謝! ...我已經看過,一遍又一遍,但我沒看到它:) – user3214817