Definition
The columns
CSS property is a shorthand property that sets both column-width
and column-count
for multi-column layouts. It allows you to set the column width and the number of columns in a single declaration.
For example, columns: 100px 3;
will create a layout with three columns each of 100px width, space permitting.