8.左侧固定右侧自适应3.html 601 B

1234567891011121314151617181920212223242526272829
  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. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. .box1 {
  13. width: 200px;
  14. height: 200px;
  15. background: #ff0;
  16. float: left;
  17. }
  18. .box2 {
  19. height: 200px;
  20. background: aqua;
  21. margin-left: 210px;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="box1"></div>
  27. <div class="box2"></div>
  28. </body>
  29. </html>