0
我有以下圖像,尺寸爲200px w x 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;
}
只需在您的鏈接上使用填充。這一切是什麼樣子?做一個小提琴 – putvande