The columnRuleColor
property gets and sets
the color of the rule between columns.
columnRuleColor |
Yes (WebkitColumnRuleColor) | 10 | Yes (MozColumnRuleColor) | Yes (WebkitColumnRuleColor) | Yes |
Return the columnRuleColor property:
var v = object.style.columnRuleColor
Set the columnRuleColor property:
object.style.columnRuleColor='color|initial|inherit'
Value | Description |
---|---|
color | Set the color of the rule. |
initial | Set to default value |
inherit | Inherit from parent element. |
Default Value: | The current color of the element |
---|---|
Return Value: | A string representing the column-rule-color property |
CSS Version | CSS3 |
The following code shows how to set the color of the rule between columns.
<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {<!--from w ww . j a va 2s .co m-->
/* Code for Chrome and Safari */
-webkit-column-count: 3;
-webkit-column-rule: 3px outset coral;
/* Code for Firefox */
-moz-column-count: 3;
-moz-column-rule: 3px outset coral;
/* Standard syntax */
column-count: 3;
column-rule: 3px outset coral;
}
</style>
</head>
<body>
<button onclick="myFunction()">test</button>
<div id="myDIV">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh
euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad
minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut
aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit
in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla
facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent
luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber
tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod
mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus
legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt
lectores legere me lius quod ii legunt saepius.
</div>
<script>
function myFunction() {
/* Code for Chrome and Safari */
document.getElementById("myDIV").style.WebkitColumnRuleColor = "lightblue";
/* Code for Firefox */
document.getElementById("myDIV").style.MozColumnRuleColor = "lightblue";
/* Standard syntax */
document.getElementById("myDIV").style.columnRuleColor = "lightblue";
}
</script>
</body>
</html>
The code above is rendered as follows: