Search w3schools.com:

SHARE THIS PAGE

CSS Reference

CSS Reference CSS Selectors CSS Reference Aural CSS Web Safe Fonts CSS Units CSS Colors CSS Color Values CSS Color Names CSS Color HEX CSS3 Browser Support

CSS Properties

CSS3 column-rule-style Property


Example

Specify the style of the rule between columns:

div
{
column-rule-style:dotted;
-moz-column-rule-style:dotted; /* Firefox */
-webkit-column-rule-style:dotted; /* Safari and Chrome */
}

Try it yourself »
More examples at the bottom of this page.

Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The column-rule-style property is supported in Internet Explorer 10 and Opera.

Firefox supports an alternative, the -moz-column-rule-style property.

Safari and Chrome support an alternative, the -webkit-column-rule-style property.

Note: The column-rule-style property is not supported in Internet Explorer 9 and earlier versions. 


Definition and Usage

The column-rule-style property specifies the style of the rule between columns.

Default value: none
Inherited: no
Version: CSS3
JavaScript syntax: object.style.columnRuleStyle="dotted"


Syntax

column-rule-style: none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset;

Value Description Play it
none Defines no rule Play it »
hidden Defines a hidden rule Play it »
dotted Defines a dotted rule Play it »
dashed Defines a dashed rule Play it »
solid Defines a solid rule Play it »
double Defines a double rule Play it »
groove Specifies a 3D grooved rule. The effect depends on the width and color values Play it »
ridge Specifies a 3D ridged rule. The effect depends on the width and color values Play it »
inset Specifies a 3D inset rule. The effect depends on the width and color values Play it »
outset Specifies a 3D outset rule. The effect depends on the width and color values Play it »


Examples

Try it Yourself - Examples

Column-count
Divide the text in a div element into three columns.

Column-gap
Divide the text in a div element into three columns, and specify a 30 pixels gap between the columns.

Column-rule
Specify the width, style and color of the rule between columns.


Related Pages

CSS3 tutorial: CSS3 Multiple Columns



Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]