代码示例:(标识:css_sprites_img)
<!DOCTYPE html>
<html>
<head>
<style>
#home {
  width: 46px;
  height: 44px;
  background: url(/static/demo/images/navsprites.png) 0 0;
}

#next {
  width: 43px;
  height: 44px;
  background: url(/static/demo/images/navsprites.png) -91px 0;
}
</style>
</head>
<body>

<img id="home" src="/static/demo/images/trans.gif" width="1" height="1">
<img id="next" src="/static/demo/images/trans.gif" width="1" height="1">

</body>
</html>
运行结果: