-moz-column-rule-color property | -webkit-column-rule-color property
-moz-column-rule-color: |
|
||||||||||
-webkit-column-rule-color: |
Specifies the color of the column rule.
Note: The -moz-column-rule-color property is supported in Firefox from version 3.5.
JavaScript page for this property: MozColumnRuleColor | webkitColumnRuleColor. You can find other example(s) there. |
Possible values:
One of the following values:
Color of the column rule. For the supported color values, see the colors page. | |||||||
Takes the value of this property from the computed style of the parent element. |
Default: none.
Example HTML code 1:
This example illustrates the use of the -moz-column-rule-color and -webkit-column-rule-color properties:
|
||||
<head> <style> #container { -moz-column-count: 4; -moz-column-width: 90px; -moz-column-rule-width : 3px; -moz-column-rule-style : solid; -moz-column-rule-color : black; -webkit-column-count: 4; -webkit-column-width: 90px; -webkit-column-rule-width : 3px; -webkit-column-rule-style : solid; -webkit-column-rule-color : black; } </style> </head> <body> <div id="container"> This is the contents of the 1. column.<br /> This is the contents of the 2. column.<br /> This is the contents of the 3. column.<br /> This is the contents of the 4. column.<br /> </div> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by tags:
a, abbr, acronym, address, b, bdo, big, blink, blockQuote, body, caption, center, cite, code, dd, del, dfn, dir, div, dl, dt, em, fieldSet, font, form, H1, H2, H3, H4, H5, H6, html, i, ins, isIndex, kbd, label, legend, li, marquee, menu, ol, p, pre, s, samp, small, span, strike, strong, sub, sup, table, td, textArea, th, tt, u, ul, var, q, xmp
Related pages:
-webkit-column-break-after
-webkit-column-break-before
-webkit-column-break-inside
-moz-column-count
-moz-column-gap
-moz-column-rule
-moz-column-rule-style
-moz-column-rule-width
-moz-column-width
-webkit-column-break-before
-webkit-column-break-inside
-moz-column-count
-moz-column-gap
-moz-column-rule
-moz-column-rule-style
-moz-column-rule-width
-moz-column-width
External links:
-moz-column-rule-color (Mozilla Developer Center)
-webkit-column-rule-color (Safari Reference Library)
CSS3 Multi-column layout
-webkit-column-rule-color (Safari Reference Library)
CSS3 Multi-column layout
User Contributed Comments