column-balancing-overflow-001.html 350 B

1234567891011121314151617181920
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
  2. <title>Balancing Overflow</title>
  3. <style type="text/css">
  4. .colset {
  5. -moz-column-count: 3;
  6. -moz-column-gap: 0;
  7. border: solid silver;
  8. width: 9em;
  9. }
  10. p { margin: 0; }
  11. .short { height: 5px; }
  12. </style>
  13. <div class="colset">
  14. <p class="short">one two three four five</p>
  15. </div>