Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> .multicol { background: beige; padding: 10px; -webkit-column-width: 70px; /* Safari and Chrome */ -moz-column-width: 70px; /* Firefox */ column-width: 70px; /* CSS3 */ } </style> <div class="multicol"> <h3>Column-width Example</h3> <p>The CSS column-width property allows you to specify the width of the columns in your multi-column layouts. </p> <p>You can specify your column widths to be automatic (i.e. auto) or a specific length value.</p> <p>Try changing the values to see the effect it has on this example.</p> </div>