You are here : cssCSS 3column-rule-style

column-rule-style - CSS 3

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


Syntax

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


Example

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


Output / Return Value


Limitations


Alternatives / See Also


Reference