How to make text over flow into two columns automatically

The good news is that there is a CSS-only solution. If it was implemented, it would look like this:

div.multi {
  column-count: 3
  column-gap: 10px;
  column-rule: 1px solid black;      
}

Leave a Comment