4.min&max.html 646 B

123456789101112131415161718192021222324252627
  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. /* 0.1+0.2!=0.3 */
  9. body {
  10. margin: 0;
  11. }
  12. #box {
  13. height: 600px;
  14. min-width: 300px;
  15. max-width: 1000px;
  16. background: url("../html+css/images/img01.gif");
  17. background-size: cover;
  18. background-position: center;
  19. background-repeat: no-repeat;
  20. margin: 0 auto;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="box"></div>
  26. </body>
  27. </html>