Hacker News new | ask | show | jobs
by achn 1367 days ago
Is there a html/css only way to automatically “columnize” text into multiple columns of reasonable width?
1 comments

There is the columns CSS property: https://developer.mozilla.org/docs/Web/CSS/columns

You probably don't want to apply it to a whole document because then you need to scroll back to the top to read the second half. But it can be effective to columnize text sections between headings.

Thanks. I’d love to see automatic pagination as well so it builds full window columnized “pages”.