6.等比缩放.html 741 B

1234567891011121314151617181920212223242526272829303132
  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. body {
  9. margin: 0;
  10. }
  11. #box {
  12. max-width: 400px;
  13. margin: 100 auto;
  14. overflow: hidden;
  15. }
  16. #box1 {
  17. padding-top: 56.25%;
  18. background: url("../html+css/images/img01.gif");
  19. background-size: cover;
  20. background-position: center;
  21. background-repeat: no-repeat;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <!-- 实现一个固定宽 响应式盒子 -->
  27. <div id="box">
  28. <div id="box1"></div>
  29. </div>
  30. </body>
  31. </html>