CSS Column-Rule-Width Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

This property sets the width of the rule between columns. Negative values are not allowed.

Syntax

column-rule-width: [value];

Possible values

  • [border-width]

Initial Value

medium

Applies To

Multi-column elements

Inherited

No

Media

Visual

Example

body {
  column-gap: 1em;
  column-rule-width: thin;
  column-rule-style: solid;
  column-rule-color: black;  
}


View All CSS Properties