我正在尝试获取背景图像以在链接悬停时更改链接。本质上,悬停图像是一种不同的颜色,所以我只是想改变图像的颜色(我知道这是不可能的,所以我只是交换图像)。
显示标志的代码:
<a href="/" id="logo"></a>
和CSS:
#logo {
position: absolute;
display: block;
margin-top: 10px;
margin-left: 10px;
background: url('../img/logo.png') no-repeat;
width: 60px;
height: 60px;
}
#logo a:hover {
background: url('../img/logo-blue.png') no-repeat;
}
有没有更好的方法来显示更容易促进这种悬停的徽标?
编辑(添加标题 CSS):
#header {
height: 75px;
text-align: right;
position: relative;
}
#header h2 {
font-size: 2.5em;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 0.1em;
padding-top: 15px;
}