column-balancing-004.ref.html 349 B

12345678910111213141516171819
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
  2. <title>Balancing Overflow</title>
  3. <style type="text/css">
  4. .colset {
  5. display: table;
  6. border-collapse: separate;
  7. border-spacing: 0;
  8. border: solid silver;
  9. }
  10. p { width: 3em; display: table-cell;}
  11. </style>
  12. <div class="colset">
  13. <p>one</p>
  14. <p>two three</p>
  15. <p>four five</p>
  16. </div>