float-clear-000.ref.html 598 B

1234567891011121314151617181920212223242526272829303132
  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. .container {
  12. border: 15px aqua;
  13. border-style: none solid;
  14. height: 250px;
  15. }
  16. .clear {
  17. border-bottom: solid orange;
  18. background: red;
  19. }
  20. </style>
  21. <p>The orange line should be halfway down the third column
  22. (immediately after the end of the aqua lines).
  23. <div class="multicol">
  24. <div class="container">
  25. </div>
  26. <div class="clear">
  27. </div>
  28. </div>