我正在使用两个图像,因此当您将鼠标悬停在图像上时,它会从带有黑色文本的图像变为带有红色文本的图像,这部分工作正常,但我有两个图像实例而不是只有一个 - 两者都从黑色到红色,但这应该只在页面上显示一次。谁能建议如何解决这个问题?
<a href="mailto:admin@email.co.uk?Subject=contact" class="email" title="email me">
.email {
margin-bottom: 10px;
width: 730px;
height:60px;
display:block;
background: transparent url('images/email.png');
background-position: center;
background-repeat: no-repeat;
}
.email:hover {
background-image: url('images/email_hover.png');
}