围绕我的问题有几个问题,但没有一个答案与我正在尝试做的事情有关。我通过使用锚标记上的类来为我的网站徽标使用精灵。问题是我必须定义像素高度和宽度,这会阻止徽标响应。
这是HTML:
<a href="<?php echo get_option('home'); ?>/" class="logo-sprite"></a>
这是CSS:
a.logo-sprite {
background: url('image_here.jpg') 0 0;
display: block;
width: 450px;
height: 130px;
}
a.logo-sprite:hover {
background: url('image_here2.jpg') 0 -140px;
}
有什么想法吗?谢谢。