| 1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- width: 41px;
- height: 69px;
- border:1px solid red;
- background-image: url("./img/icon-slides.png");
- background-position:-41px 0;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- </body>
- </html>
|