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

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