我有一些用于评级系统的 CSS 精灵:http: //i.imgur.com/qeb2b.png
加载拇指时
.thumb-down {
background: url('http://i.imgur.com/qeb2b.png') no-repeat -126px -13px;
width: 15px;
height: 16px;
}
.thumb-up {
background: url('http://i.imgur.com/qeb2b.png') no-repeat -126px -33px;
width: 15px;
height: 16px;
}
我可以让拇指出现的唯一方法是如果我这样做:
Was this review helpful? <a href="#" class="thumb-up rating"> </a> | <a href="#" class="thumb-down rating"> </a>
如果我删除所有,
那么拇指就会消失。如果我只留下一个
,那么它会显示精灵的部分视图。
如何在不需要的情况下显示精灵 ?