Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> .multicol { width: 22em; background-color: beige; border: 5px solid darkorange; column-count: 3; gap: 3em; } p, h3 { background-color: white; border: 1px dotted black; } </style> <div class="multicol"> <p>This text is within a multi-column container. The CSS specifies a value for the 'column-gap' property. Change the value of the 'column-gap' property to see how it affects the gutter between each column.</p> </div>