xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Sprite精灵图片示例</title>
<style>
.sprite {
background: url("/run/images/mySprite.png") no-repeat;
}
.ie {
width: 50px; /* Icon width */
height: 50px; /* Icon height */
display: inline-block; /* Display icon as inline block */
background-position: 0 -200px; /* Icon background position in sprite */
}
</style>
</head>
<body>
<span class="sprite ie"></span>
</body>
</html>