The column-gap
property defines the gap between the columns of an element.
column-gap: value | normal;
.mydiv {
column-gap: 30px;
}
value: sets the given value as the gap between the columns.
normal: sets a normal gap 1em
between the columns. (default value)