Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
```
### Property Values
| Value | Description |
|-------|-------------|
| `width` | Sets the width of the rule. |
| `style` | Sets the style of the rule. |
| `color` | Sets the color of the rule. |
| `initial` | Sets this property to its default value. |
| `inherit` | Inherits this property from its parent element. |
### Browser Support
| Property | Chrome | Firefox | Safari | Edge |
|----------|--------|---------|--------|------|
| `column-rule` | 50.0 | 5.0 | 9.0 | 12.0 |
### Related Pages
* (
* (
* (
* (
* (
* (
* (
* (Css3 Pr Column Rule
## column-rule Property
The `column-rule` property sets the width, style, and color of the rule between columns.
### Syntax
```css
column-rule: width style color|initial|inherit;
```
### Example
```html
div {
column-count: 3;
column-rule: 1px solid #ff0000;
}
YouTip