5_背景图片demo.html 566 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. #div1{
  10. width: 230px;
  11. height: 322px;
  12. background-image: url(images/bg.png);
  13. background-position: 0 -322px;
  14. background-size: 690px 644px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div id="div1"></div>
  20. </body>
  21. </html>