column-rule-width : Column Rule Width Property
The column-rule-width property sets the thickness of the divider between columns.
On this page
Usage
selector {
column-rule-width: width;
}
Supported Values
- Keywords:
thin,medium,thick - Length units:
0.5pt,1pt,2pt,3px, etc.
Supported Elements
The column-rule-width property can be applied to any multi-column block container.
Notes
- Width has visual effect only when style is not
none - Pair with
column-rule-styleandcolumn-rule-color - For readability, keep rules subtle (
1ptis a common value)
Examples
.content {
columns: 2;
column-gap: 20pt;
column-rule-style: solid;
column-rule-width: 1pt;
column-rule-color: #d1d5db;
}