01-float.html 866 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <style>
  8. .container {
  9. width: 400px;
  10. background-color: green;
  11. }
  12. .fl {
  13. float: left;
  14. width: 200px;
  15. height: 50px;
  16. background-color: grey;
  17. }
  18. .fl2 {
  19. float: left;
  20. width: 200px;
  21. height: 20px;
  22. background-color: grey;
  23. }
  24. </style>
  25. <body>
  26. <div class="container">
  27. <!--<input type="button" value="你好" style="background-color: blue;width: 100px;height: 30px">-->
  28. <!--<span>你好</span>-->
  29. <!--<span>你好</span>-->
  30. <!--<span> 你好</span>-->
  31. <div class="fl"></div>
  32. <span> 你好</span>
  33. <!--&lt;!&ndash;<div style="background-color: red;width: 100px;height: 50px">你好</div>&ndash;&gt;-->
  34. <div class="fl"></div>
  35. </div>
  36. </body>
  37. </html>