27_雪碧图.html 506 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 41px;
  10. height: 69px;
  11. border: 1px solid black;
  12. background-image: url(./img/icon-slides.png);
  13. background-repeat: no-repeat;
  14. background-position:-42px 0;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="box"></div>
  20. </body>
  21. </html>