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 -moz-column-rule-style Mozilla extension property sets the style of the rule drawn between columns in multi-column layouts. Safari supports the -webkit-column-rule-style property.

Values[]

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


CSS example:

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