CSS column-rule-style
The column-rule-style property in CSS is used to specify the style of the rule between columns in a multi-column layout. This property takes a value that specifies the style of the rule, such as solid, dotted, dashed, etc.
Here is the syntax for the column-rule-style property:
.column-rule-style {
column-rule-style: value;
}
Where value can be one of the following options:
none: No rule is drawn between columnshidden: A hidden rule is drawn between columnsdotted: A dotted rule is drawn between columnsdashed: A dashed rule is drawn between columnssolid: A solid rule is drawn between columns
Examples
In the above example, we have used the solid value for the column-rule-style property. As a result, a solid rule is drawn between the columns in the multi-column layout.