float-clear-001.html 747 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
  2. <style type="text/css">
  3. .multicol {
  4. margin: 1em;
  5. border: solid silver;
  6. width: 300px;
  7. -moz-column-width: 100px;
  8. -moz-column-gap: 0;
  9. height: 100px;
  10. }
  11. .float {
  12. float: right;
  13. width: 15px;
  14. background: aqua;
  15. height: 250px;
  16. }
  17. .L {
  18. float: left;
  19. }
  20. .container {
  21. width: 100%;
  22. }
  23. .clear {
  24. border-bottom: solid orange;
  25. background: red;
  26. }
  27. </style>
  28. <p>The orange line should be halfway down the third column
  29. (immediately after the end of the aqua lines).
  30. <div class="multicol">
  31. <div class="container">
  32. <div class="float L"></div>
  33. <div class="float R"></div>
  34. <br clear="all">
  35. </div>
  36. <div class="clear">
  37. </div>
  38. </div>