<html lang="en">
<head>
<meta charset="UTF-8">
<style>
/*空格 后代选择器*/
#container div{
height: 30px;
width: 30px;
color: red;
background-image: url("../ws/images/icon.gif");
}
#div2{
background-position: -27px 0;
}
#div3{
background-position: -110px 0;
}
</style>
<title>雪碧图</title>
</head>
<body>
<div id="container">
<div></div>
<div id="div2"></div>
<div id="div3"></div>
</div>
</body>
</html>