<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>雪碧图</title>
<style type="text/css">
*{
margin: 0px;
padding: 0px;
}
.spirit{
width: 150px;
height: 200px;
background:url(img/spirit.jpg);
background-repeat: no-repeat;
}
.spirit:hover{
background-position: -120px;
}
</style>
</head>
<body>
<div class="spirit">
<!--因为div里面只是设置背景图片并没有子元素将它撑起来,所以需要手动设置宽高,要不然高度坍塌,看不到背景了-->
</div>
</body>
</html>
雪碧图主要就是用: background—position 和 hover 和 background 三者共同实现的