test.html 499 B

12345678910111213141516171819202122
  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. div{
  9. width: 200px;
  10. height: 500px;
  11. background-color: hotpink;
  12. background-image:url(./img04.jpeg) ;
  13. background-position: center center;
  14. background-repeat:no-repeat ;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div>红红火火恍恍惚惚</div>
  20. </body>
  21. </html>