| 123456789101112131415161718192021222324252627 |
- <!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>
- /* 0.1+0.2!=0.3 */
- body {
- margin: 0;
- }
- #box {
- height: 600px;
- min-width: 300px;
- max-width: 1000px;
- background: url("../html+css/images/img01.gif");
- background-size: cover;
- background-position: center;
- background-repeat: no-repeat;
- margin: 0 auto;
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- </body>
- </html>
|