Javascript DOM CSS Style columnRuleStyle Property

Introduction

Change the style of the rule between columns:

document.getElementById("myDIV").style.columnRuleStyle = "dotted";

Click the button to change the style of the column-rule:

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {//from w  w  w . j  ava2 s  .c  o  m
  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() {
  document.getElementById("myDIV").style.columnRuleStyle = "dotted";
}
</script>

</body>
</html>

The columnRuleStyle property specifies the style of the rule between columns.

Property Values

Value Description
noneDefault. Defines no rule
hidden a hidden rule
dotted a dotted rule
dashed a dashed rule
solid a solid rule
double a double rule
groove a 3D grooved rule. The effect depends on the width and color values
ridge a 3D ridged rule. The effect depends on the width and color values
inset a 3D inset rule. The effect depends on the width and color values
outset a 3D outset rule. The effect depends on the width and color values
initial Sets this property to its default value.
inherit Inherits this property from its parent element.

The columnRuleStyle property returns a String representing the column-rule-style property of an element.




PreviousNext

Related