You are here: Reference > JavaScript > client-side > style handling > properties > browser specific extensions > MozBorderStartStyle
MozBorderStartStyle style property
Specifies or retrieves the style of the element's border start. Use the borderRightStyle property instead.
Equivalent to the borderRightStyle property, for a cross-browser solution use borderRightStyle 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-style |
Possible values:
The type of this property is string.
One of the following values:
The border looks as though it were embedded in the canvas. | |||||||
The border looks as though it were coming out of the canvas. | |||||||
A solid line is drawn. | |||||||
A series of short line segments is drawn. | |||||||
A series of dots is drawn. | |||||||
A double line border. | |||||||
The border looks as if it has been carved into the background. | |||||||
Turns the border off. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
The border looks as though it were embedded in the canvas. | |||||||
Default. Border width is null. | |||||||
The border looks as though it were coming out of the canvas. | |||||||
The border looks as if it's protruding out of the background. | |||||||
A solid line is drawn. |
Default: none.
Example HTML code 1:
This example illustrates the use of the -moz-border-start-style property:
|
||||
<head> <style> .example { border-top: 2px solid green; -moz-border-start-color: blue; -moz-border-start-width: 3px; -moz-border-start-style: dotted; } </style> </head> <body> <div class="example">-moz-border-start-style: dotted</div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the MozBorderStartStyle property in JavaScript:
|
||||
<head> <script type="text/javascript"> function ChangeBorder (selectTag) { // Returns the index of the selected option var whichSelected = selectTag.selectedIndex; // Returns the text of the selected option var selectState = selectTag.options[whichSelected].text; var div = document.getElementById ("myDiv"); if ('MozBorderStartStyle' in div.style) { div.style.MozBorderStartStyle = selectState; } else { alert ("Your browser doesn't support this example!"); } } </script> </head> <body> <div id="myDiv" style="border-left: 6px solid blue; -moz-border-start: 4px solid red;"> Sample division with -moz-border-start </div> <select onchange="ChangeBorder (this);" 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> </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
MozBorderStart
MozBorderStartColor
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
MozBorderStart
MozBorderStartColor
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