7_浮动.html 501 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. div{
  10. width: 100px;
  11. height: 50px;
  12. background: #f00;
  13. float: left;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div>1</div>
  19. <div>2</div>
  20. <div>3</div>
  21. <div>4</div>
  22. </body>
  23. </html>