column-rule-style : Column Rule Style Property
The column-rule-style property sets the line style for the divider between columns.
On this page
Usage
selector {
column-rule-style: style;
}
Supported Values
Common line styles include:
nonesoliddasheddotteddouble
Supported Elements
The column-rule-style property can be applied to any multi-column block container.
Notes
nonehides the column divider- A visible rule also needs a non-zero width (
column-rule-width) - Use
column-ruleshorthand when setting width/style/color together
Examples
.article {
column-count: 3;
column-gap: 14pt;
column-rule-width: 1pt;
column-rule-style: dashed;
column-rule-color: #9ca3af;
}