6_等比缩放.html 825 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. .box1{
  12. max-width: 600px;
  13. margin: 100px auto;
  14. }
  15. .box {
  16. /* max-width: 600px; */
  17. /* height: 300px; */
  18. /* padding-top: 300px; */
  19. /* padding 或者 margin 使用百分比 是相对于父元素的宽度 */
  20. padding-top: 62.5%;
  21. /* background-color: pink; */
  22. background-image: url("./img/img1.jpg");
  23. background-size: 100% 100%;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="box1">
  29. <div class="box">
  30. </div>
  31. </div>
  32. </body>
  33. </html>