12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- div{
- width: 200px;
- height: 500px;
- background-color: hotpink;
- background-image:url(./img04.jpeg) ;
- background-position: center center;
- background-repeat:no-repeat ;
- }
- </style>
- </head>
- <body>
- <div>红红火火恍恍惚惚</div>
-
- </body>
- </html>
|