18_CSS背景定位.html 469 B

1234567891011121314151617181920
  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: 200px;
  10. height: 200px;
  11. border:1px solid black;
  12. background-image: url(./image/image1.png);
  13. background-position: -100px -100px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div class="box"></div>
  19. </body>
  20. </html>