You are here: Reference > JavaScript > client-side > style handling > properties > browser specific extensions > MozBorderStart
MozBorderStart style property
Specifies or returns the color, style and width properties for the start of the element's border. Use the borderRight property instead.
Equivalent to the borderRight property, for a cross-browser solution use borderRight instead.
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: -moz-border-start |
Possible values:
The type of this property is string.
One of the following values: | ||||||||||||
|
Description of values:
Specifies or retrieves the color of the element's border start. Use the borderRightColor property instead. | |||||||
Specifies or retrieves the style of the element's border start. Use the borderRightStyle property instead. | |||||||
Specifies or retrieves the width of the element's border start. Use the borderRightWidth property instead. | |||||||
Takes the value of this property from the computed style of the parent element. |
Default: this property has no default value.
Example HTML code 1:
This example illustrates the use of the -moz-border-start property:
|
||||
<head> <style> .example { border-top: 2px solid green; -moz-border-end: 4px solid red; -moz-border-start: 4px solid blue; } </style> </head> <body> <div class="example">-moz-border-start: 4px solid blue</div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the MozBorderStart property in JavaScript:
|
||||
<head> <script type="text/javascript"> function ChangeBorder () { var selectCont = document.getElementById ("selectCont"); var selectTags = selectCont.getElementsByTagName ("select"); var selectState = []; for (i = 0; i < selectTags.length; i++) { // Returns the index of the selected option whichSelected = selectTags[i].selectedIndex; // Returns the text of the selected option selectState[i] = selectTags[i].options[whichSelected].text; } var div = document.getElementById ("myDiv"); if ('MozBorderStart' in div.style) { div.style.MozBorderStart = selectState[0] + " " + selectState[1] + " " + selectState[2]; } else { alert ("Your browser doesn't support this example!"); } } </script> </head> <body> <div id="myDiv" style="border-top:2px solid green; -moz-border-start:4px solid blue;"> Sample division with border-left </div> <div id="selectCont"> <select onchange="ChangeBorder ();" size="5"> <option selected="selected" />1px <option />3px <option />8px <option />15px <option />24px </select> <select onchange="ChangeBorder ();" size="10"> <option />dotted <option />dashed <option />double <option />groove <option />inset <option />none <option />outset <option />ridge <option selected="selected" />solid <option />window-inset </select> <select onchange="ChangeBorder ();" size="8"> <option selected="selected" />blue <option />red <option />cyan <option />white <option />green <option />yellow <option />purple <option />black </select> </div> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
CSSStyleDeclaration, htmlElement.style
HTML elements:
a, abbr, acronym, address, applet, b, bdo, big, blink, blockquote, body, button, caption, center, cite, code, dd, del, dfn, dir, div, dl, dt, em, embed, fieldset, font, form, h1, h2, h3, h4, h5, h6, hr, html, i, iframe, img, input:button, input:checkbox, input:file, input:image, input:password, input:radio, input:reset, input:submit, input:text, ins, isindex, kbd, label, legend, li, marquee, menu, object, ol, p, pre, s, samp, select, small, span, strike, strong, sub, sup, table, tbody, td, textarea, tfoot, th, thead, tt, u, ul, var
Related pages:
MozBorderBottomColors
MozBorderEnd
MozBorderEndColor
MozBorderEndStyle
MozBorderEndWidth
MozBorderLeftColors
MozBorderRadius
MozBorderRadiusBottomleft
MozBorderRadiusBottomright
MozBorderRadiusTopleft
MozBorderRadiusTopright
MozBorderRightColors
MozBorderStartColor
MozBorderStartStyle
MozBorderStartWidth
MozBorderTopColors
border
borderBottom
borderBottomColor
borderBottomStyle
borderBottomWidth
borderColor
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
MozBorderEnd
MozBorderEndColor
MozBorderEndStyle
MozBorderEndWidth
MozBorderLeftColors
MozBorderRadius
MozBorderRadiusBottomleft
MozBorderRadiusBottomright
MozBorderRadiusTopleft
MozBorderRadiusTopright
MozBorderRightColors
MozBorderStartColor
MozBorderStartStyle
MozBorderStartWidth
MozBorderTopColors
border
borderBottom
borderBottomColor
borderBottomStyle
borderBottomWidth
borderColor
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
External links:
User Contributed Comments