column-balancing-overflow-002.html 435 B

12345678910111213141516171819202122232425
  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. .table { display: table; }
  13. </style>
  14. <div class="colset">
  15. <div class="table">
  16. <div class="short">
  17. <p>one two three four five</p>
  18. </div>
  19. </div>
  20. </div>