CSS column-rule-color Property

You are Here:

CSS column-rule-color Property

CSS column-rule-color property sets the color of the line drawn between columns in a multi-column layout.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border: 1px solid #267326; padding: 10px; margin-bottom: 25px; column-count: 2; -webkit-column-count: 2; /* Chrome, Safari, Opera */ -moz-column-count: 2; /* Firefox */ -webkit-column-gap: 40px; -moz-column-gap: 40px; column-gap: 40px; column-rule-width: 4px; -webkit-column-rule-width: 4px; /* Chrome, Safari, Opera */ -moz-column-rule-width: 4px; /* Firefox */ column-rule-style: double; -webkit-column-rule-style: double; /* Chrome, Safari, Opera */ -moz-column-rule-style: double; /* Firefox */ } #point{ column-rule-color: red; -webkit-column-rule-color: red; /* Chrome, Safari, Opera */ -moz-column-rule-color: red; /* Firefox */ } #point1{ column-rule-color: green; -webkit-column-rule-color: green; /* Chrome, Safari, Opera */ -moz-column-rule-color: green; /* Firefox */ } #point2{ column-rule-color: blue; -webkit-column-rule-color: blue; /* Chrome, Safari, Opera */ -moz-column-rule-color: blue; /* Firefox */ } </style> </head> <body> <h1>CSS column-rule-color Property</h1> <h2>column-rule-color: red;</h2> <div id="point"> Joanne Rowling was born on 31st July 1965 ... </div> <h2>column-rule-color: green;</h2> <div id="point1"> Joanne Rowling was born on 31st July 1965 ... </div> <h2>column-rule-color: blue;</h2> <div id="point2"> Joanne Rowling was born on 31st July 1965 ... </div> </body> </html>

Syntax

Using CSS

element{ column-rule-color: red; }

Using Javascript

object.style.columnRuleColor="red";

Animatable

Yes, column-rule-color property is animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS column-rule-color property is current content color.

Property Value

The following table provides a list of values for CSS column-rule-color property.

ValueExplanation
colorSpecifies the color of the rule that separates columns. Check our color combinator for more colors.

Using JavaScript

In the following example, we will demonstrate how to change the CSS column-rule-color property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border: 1px solid #267326; padding: 10px; margin-bottom: 25px; column-count: 2; -webkit-column-count: 2; /* Chrome, Safari, Opera */ -moz-column-count: 2; /* Firefox */ -webkit-column-gap: 40px; -moz-column-gap: 40px; column-gap: 40px; column-rule-width: 4px; -webkit-column-rule-width: 4px; /* Chrome, Safari, Opera */ -moz-column-rule-width: 4px; /* Firefox */ column-rule-style: double; -webkit-column-rule-style: double; /* Chrome, Safari, Opera */ -moz-column-rule-style: double; /* Firefox */ } </style> </head> <body> <h1>CSS column-rule-color Property</h1> <div> Joanne Rowling was born on 31st July 1965 ... </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("div")[0]; function myFunction(){ x.style.columnRuleColor = "red"; x.style.WebkitColumnRuleColor = "red"; x.style.MozColumnRuleColor = "red"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author