12345678910111213141516171819202122232425 |
- <!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>
- .box{
- width: 200px;
- height: 400px;
- border:2px solid black;
- background-image: url("./img/zfb.png");
- background-repeat: no-repeat;
- /* background-size: 100%; */
- /* background-size: 10px 100px; */
- /* background-size: contain; */
- background-size: cover;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- </body>
- </html>
|