CSS Multi-Column Generator
Flow text into newspaper-style columns — count, gap and divider rule — with live preview and CSS.
783 views
CSS Multi-Column Layout
column-count splits a block's content into equal newspaper columns; column-gap sets the gutter and column-rule draws a divider line (same syntax as border). Text flows automatically from one column to the next — ideal for long articles, footers and index lists. Use break-inside: avoid on children you don't want split across columns.
Frequently Asked Questions
column-count or column-width?
column-count fixes how many columns you get; column-width lets the browser fit as many columns of at least that width as possible — better for responsive layouts. You can set both.
How do I stop an element splitting across columns?
Give it break-inside: avoid; — useful for cards, images with captions and list items.
Similar Tools
Report a Problem
CSS Multi-Column Generator