练习2_两列布局.html 770 B

123456789101112131415161718192021222324252627282930313233343536
  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: 200px;
  13. height: 100px;
  14. background-color: blue;
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. }
  19. .div2{
  20. position: absolute;
  21. top: 0;
  22. left: 200px;
  23. width: calc(100% - 200px);
  24. height: 100px;
  25. background-color: red;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="box">
  31. <div class="div1"></div>
  32. <div class="div2"></div>
  33. </div>
  34. </body>
  35. </html>