You are here: Reference > JavaScript > client-side > style handling > properties > browser specific extensions > MozColumnRuleWidth
MozColumnRuleWidth style property | webkitColumnRuleWidth style property
MozColumnRuleWidth |
|
||||||||||
webkitColumnRuleWidth |
Specifies or retrieves the width of the column rule, which is placed in the middle of the column gap.
Note: The MozColumnRuleWidth property is supported in Firefox from version 3.5.
Syntax:
You can find the related objects in the Supported by objects section below.
MozColumnRuleWidth: | This property is read/write. |
webkitColumnRuleWidth: | This property is read/write. |
CSS page for this property: -moz-column-rule-width |
Possible values:
The type of this property is string.
One of the following values:
The width of the border in length units. For the supported length units, see the length page. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
Default. | |||||||
Greater than the medium width. | |||||||
Less than the medium width. |
Default: medium.
Example HTML code 1:
This example illustrates the use of the -moz-column-rule-width and -webkit-column-rule-width 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?
|
Example HTML code 2:
This example illustrates the use of the MozColumnRuleWidth and webkitColumnRuleWidth properties in JavaScript:
|
||||
<head> <style> #container { -moz-column-count: 4; -moz-column-width: 100px; -moz-column-rule-width : 3px; -moz-column-rule-style : solid; -moz-column-rule-color : red; -webkit-column-count: 4; -webkit-column-width: 100px; -webkit-column-rule-width : 3px; -webkit-column-rule-style : solid; -webkit-column-rule-color : red; } </style> <script type="text/javascript"> function ChangeRule (input) { var container = document.getElementById ("container"); if ('mozColumnRuleWidth' in container.style) { container.style.mozColumnRuleWidth = input.value + "px"; } else if ('webkitColumnRuleWidth' in container.style) { container.style.webkitColumnRuleWidth = input.value + "px"; } else { alert ("Your browser doesn't support this example!"); } } </script> </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> Please enter the new width of the column rule: <input type="text" onkeyup="ChangeRule (this);" /> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
CSSStyleDeclaration, htmlElement.style
HTML elements:
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, q, s, samp, small, span, strike, strong, sub, sup, table, td, textarea, th, tt, u, ul, var, xmp
Related pages:
webkitColumnBreakAfter
webkitColumnBreakBefore
webkitColumnBreakInside
MozColumnCount
MozColumnGap
MozColumnRule
MozColumnRuleColor
MozColumnRuleStyle
MozColumnWidth
webkitColumnBreakBefore
webkitColumnBreakInside
MozColumnCount
MozColumnGap
MozColumnRule
MozColumnRuleColor
MozColumnRuleStyle
MozColumnWidth
External links:
-moz-column-rule-width (Mozilla Developer Center)
-webkit-column-rule-width (Safari Reference Library)
CSS3 Multi-column layout
-webkit-column-rule-width (Safari Reference Library)
CSS3 Multi-column layout
User Contributed Comments