- 作者:霏梦
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>背景实战:精灵图/雪碧图</title>
<style>
.box1 {
width: 500px;
height: 400px;
border: 1px solid #000000;
background-image: url("1.png");
background-repeat: no-repeat;
background-position: 40px 20px;
}
.box2 {
width: 110px;
height: 110px;
border: 1px solid #000000;
background-image: url("1.png");
background-repeat: no-repeat;
background-position: -220px -110px;
background-position: -0 -220px;
/* background-position: -110px -220px; */
}
.box3 {
width: 110px;
height: 110px;
background-image: url("1.png");
background-position: -110px -220px;
}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</body>
</html>