我的 3 个按钮在彼此下方,但是当我将鼠标悬停在浏览器中的图像上时,底部按钮消失了。从顶部开始的按钮是普通按钮、悬停按钮和选择按钮时。任何人都可以帮助使我的按钮与此类似,我使用了此代码,但它仍然无法正常工作。先谢谢了!:D http://www.icondeposit.com/blog:custom-css-button-sprite
按钮:https ://www.dropbox.com/s/j9ecwlgqu8d5508/button-2.png
这是我的CSS代码,
.GoogleMarker {
width: 1086px;
height: 1118px;
background: transparent url(button-2.png) 0 0px no-repeat; /* When not hovered over */
}
.GoogleMarker:hover {
width: 1086px;
height: 1118px;
background: transparent url(button-2.png) 0 -503px no-repeat; /* When hovered over */
}
.GoogleMarker:active {
width: 1086px;
height: 1118px;
background: transparent url(button-2.png) 0 -1004px no-repeat; /* When you press down on the icon or the icon is activated (clicked on) */
}