I have a few css sprites for a rating system: http://i.imgur.com/qeb2b.pngCSS不顯示圖像,除非<a has spaces
當裝載大拇指
.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>
如果我刪除所有
然後拇指消失。如果我只留下一個
,那麼它會顯示精靈的部分視圖。
我如何使用float:left
顯示精靈,而不需要 ?
使用'display:block;'是超快的,因爲浮動元素自動是塊元素。 – Guffa
@Guffa,我可以使用內聯塊,但顯然IE7不太喜歡它http://flipc.blogspot.sg/2009/02/damn-ie7-and-inline-block.html –
@Guffa哦,你正在談論一個完全不同的東西:對不起。編輯。謝謝 –