You are here: Reference > JavaScript > client-side > style handling > properties > browser specific extensions > MozOutlineStyle
MozOutlineStyle style property
3.6 |
Sets or retrieves the style of the left, right, top, and bottom borders of the object.
Deprecated and the support for it has been removed in Firefox 3.6.
Use the cross-browser outlineStyle property 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-outline-style |
Possible values:
The type of this property is string.
One of the following values:
The outline looks as though it were embedded in the canvas. | |||||||
The outline 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 outline. | |||||||
The outline looks as if it has been carved into the background. | |||||||
Turns the outline off. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
The outline looks as though it were embedded in the canvas. | |||||||
Default. Outline width is null. | |||||||
The outline looks as though it were coming out of the canvas. | |||||||
The outline 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-outline-style property:
|
||||
<head> <style> .example { -moz-outline-width: 1px; -moz-outline-style: solid; -moz-outline-color: blue; } </style> </head> <body> <div class="example">Outline: 1px solid blue</div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the MozOutlineStyle property in JavaScript:
|
||||
<head> <script type="text/javascript"> function ChangeOutlineStyle (selectTag) { // Returns the index of the selected option var whichSelected = selectTag.selectedIndex; // Returns the text of the selected option var outStyle = selectTag.options[whichSelected].text; var div = document.getElementById ("myDiv"); if ('MozOutlineStyle' in div.style) { div.style.MozOutlineStyle = outStyle; } else { alert ("Your browser doesn't support this example!"); } } </script> </head> <body> <div id="myDiv" style="-moz-outline: 4px solid blue;"> Change outline style </div> <br /><br /><br /> <select onchange="ChangeOutlineStyle (this);" size="9"> <option />dotted <option selected="selected" />dashed <option />double <option />groove <option />inset <option />none <option />outset <option />ridge <option />solid </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, optgroup, option, p, pre, s, samp, select, small, span, strike, strong, sub, sup, table, tbody, td, textarea, tfoot, th, thead, tr, tt, u, ul, var
Related pages:
MozOutline
MozOutlineColor
MozOutlineOffset
MozOutlineRadius
MozOutlineRadiusBottomleft
MozOutlineRadiusBottomright
MozOutlineRadiusTopleft
MozOutlineRadiusTopright
MozOutlineWidth
outline
outlineColor
outlineOffset
outlineStyle
outlineWidth
MozOutlineColor
MozOutlineOffset
MozOutlineRadius
MozOutlineRadiusBottomleft
MozOutlineRadiusBottomright
MozOutlineRadiusTopleft
MozOutlineRadiusTopright
MozOutlineWidth
outline
outlineColor
outlineOffset
outlineStyle
outlineWidth
External links:
User Contributed Comments