代码
提交代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS Sprites</title>
<style>
/* 清除默认样式 */
* { padding: 0; margin: 0; }
/* 这段代码是为了居中显示,不是重点,看不懂的话可以无视 */
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.sprite {
/* 设置宽高和边框 */
width: 55px;
height: 52px;
border: 1px solid black;
/* 背景图地址设置为雪碧图的位置 */
background-image: url('http:////img.mukewang.com/wiki/5ed9ca5a0973e0d804450108.jpg');
/* 背景图尺寸 */
background-size: cover;
/* 令背景图显示在正确的位置 */
background-position: left;
}
</style>
</head>
<body>
<div class="sprite"></div>
</body>
</html>
运行结果