如图:想往当前的容器内放一个背景图片上的某个小图片,当前容器暂用div表示
<div class="sprite"></div>
//样式
<style>
//首先设定容器的宽高,即要放置的小图片的大小,否则背景图片就会超出显示了 如图片背景图片大小为80*20,图片名称sprite01.png ,小图片的坐标位置为(67,97)所以小图的定位相对原点来说是(-67,-97),如此即可。
.sprite{ width:80px; height:20px; background:url(sprite01.png) no-repeat -67px -97px;}
</style>
当然一定要记得no-repeat .如果没有加no-repeat图片会一直平铺吧背景大小铺满哟。
原文:http://www.cnblogs.com/chenkewen2007/p/6551326.html