HTML & CSS Wiki
Advertisement
Stub

This article is a stub. Please help the wiki by coding it. Spamming and vandalism is not considered an improvement and will result in discipline, up to, and including a permanent block.


The CSS -webkit-column-rule-color Apple extension property sets the color of the rule drawn between columns in multi-column layouts. Firefox supports the -moz-column-rule-color property.

Values[]

Value Description
<color> Uses a valid color name or color code as the value.


CSS example:

body {
      -webkit-column-count:2;
      -webkit-column-rule-color:orange;
}
Advertisement