4_等比缩放.html 638 B

123456789101112131415161718192021222324252627282930
  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. .div1{
  12. width: 100%;
  13. height: 100px;
  14. background-color: red;
  15. float: left;
  16. }
  17. .div2{
  18. width: 400px;
  19. height: 100px;
  20. background-color: blue;
  21. float: left;
  22. margin-left: -100%;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="div1"></div>
  28. <div class="div2"></div>
  29. </body>
  30. </html>