19_背景图.html 629 B

12345678910111213141516171819202122232425
  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: 400px;
  11. border:2px solid black;
  12. background-image: url("./img/zfb.png");
  13. background-repeat: no-repeat;
  14. /* background-size: 100%; */
  15. /* background-size: 10px 100px; */
  16. /* background-size: contain; */
  17. background-size: cover;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="box"></div>
  23. </body>
  24. </html>