代码
提交代码
<!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: 50px; border: 1px solid black; /* 背景图地址设置为雪碧图的位置 */ background-image: url('http://img.mukewang.com/wiki/5ed9a97108da9a2e04440371.jpg'); /* 背景图尺寸 */ background-size: 205px 170px; /* 令背景图显示在正确的位置 */ background-position: left bottom; } </style> </head> <body> <div class="sprite"></div> </body> </html>
运行结果