The columns
property defines the column-width
and the column-count
.
columns: column-width column-count | auto;
.mydiv {
columns: 50px 3;
}
column-width: sets the width of the columns.
column-count: sets the number of the columns in an element.
auto: sets the width and column counts automatically. (default value)