4_等比缩放.html 870 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. .box {
  9. /* width: 600px; */
  10. max-width: 600px;
  11. margin: 100px auto;
  12. }
  13. .box img {
  14. width: 100%;
  15. }
  16. .box2 {
  17. max-width: 600px;
  18. margin: 0 auto;
  19. }
  20. .box3 {
  21. background-image: url(./img/img1.jpg);
  22. background-size: cover;
  23. width: 100%;
  24. /* padding 使用百分比 相较于父元素的宽度 */
  25. padding-top:62.5%;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="box">
  31. <img src="./img/img1.jpg" alt="">
  32. </div>
  33. <div class="box2">
  34. <div class="box3"></div>
  35. </div>
  36. </body>
  37. </html>