Tested tool guide
Tested browser tools
Checked August 15, 2026
What CSS Multi-Column Layout Generator does, with a checked example
This tool exposes the CSS multi-column properties (column-count, column-gap, column-rule, column-span) as form controls and rewrites both a CSS text block and a live rendered preview as you adjust them. The preview uses the browser's own column layout engine rather than a static mockup, so wrapping and rule placement match what you'd see in production. The part people get wrong most often: column-rule only draws the line between columns, not a border around the whole box, and column-span only affects block-level elements like headings or pull-quotes - applying it to inline text has no visible effect.
Worked example
A concrete input and expected output from the current implementation.
Input
column-count: 3, column-gap: 2em, column-rule: 2px dashed #999
->
Expected output
.multicol {
column-count: 3;
column-gap: 2em;
column-rule: 2px dashed #999;
} Each control maps one-to-one onto its CSS property, and the rule width, style, and color fields combine into the column-rule shorthand, so the generated block is a direct translation of the form inputs.