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