Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="ru">
- <head>
- <meta charset="UTF-8">
- <title>Документ</title>
- <style>
- .box {
- display: flex;
- flex-wrap: nowrap;
- flex-direction: row;
- }
- .item {
- width: 200px;
- height: 200px;
- margin: 5px;
- border-radius: 10px;
- background: url(https://otvet.imgsmail.ru/download/68900022_3a80dfddb0f00e458b2e235ed4834457_800.png) no-repeat;
- }
- #one {
- background-position: 0 -6px;
- }
- #two {
- background-position: -200px -6px;
- }
- #three {
- background-position: -400px -6px;
- }
- #four {
- background-position: -600px -6px;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="item" id="one"></div>
- <div class="item" id="two"></div>
- <div class="item" id="three"></div>
- <div class="item" id="four"></div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement