4_等比缩放.html 800 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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-top:62.5%;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="box">
  30. <img src="./img/img1.jpg" alt="">
  31. </div>
  32. <div class="box2">
  33. <div class="box3"></div>
  34. </div>
  35. </body>
  36. </html>