HTML & CSS Wiki

READ MORE

HTML & CSS Wiki
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-style Apple extension property sets the style of the rule drawn between columns in multi-column layouts. Firefox supports the -moz-column-rule-style property.

Values[]

Value Description
<border-style> See the values of the border-style property.


CSS example:

body {
      -webkit-column-count:2;
      -webkit-column-rule-style:thin solid red;
}