02-float.html 903 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. .container {
  8. border: 3px solid #8990D5;
  9. }
  10. .box_1 {
  11. height: 100px;
  12. width: 100px;
  13. text-align: center;
  14. background-color: #FFB5BF;
  15. }
  16. .box_2 {
  17. height: 100px;
  18. width: 100px;
  19. text-align: center;
  20. background-color: #94E8FF;
  21. }
  22. .float {
  23. float: left;
  24. }
  25. .clear {
  26. clear: left;
  27. }
  28. .overflow {
  29. overflow: hidden;
  30. zoom: 1; /* 兼容 IE6、IE7*/
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="container">
  36. <div class="box_1 float">box 1</div>
  37. <div class="box_2 float">box 2</div>
  38. <div class="clear"></div>
  39. <!--<br clear="all">-->
  40. </div>
  41. </body>
  42. </html>