我有以下图像,尺寸为 200px wx 100px h。基本上,我需要链接看起来像这样
* link
其中 * 是图像。当图像和链接都悬停时,悬停状态应该启动。我的 html & css 如下,但它似乎不起作用:
<a href="#" class="current-location">Us this location</a>
.current-location {
background-position: 0 0px;
background: url(images/current-location.png) left top no-repeat;
background-size: 48px 24px;
height: 24px;
width: 24px;
text-decoration: none;
}
.current-location:hover {
background-position: -24px 0px;
background-size: 48px 24px;
height: 24px;
width: 24px;
}