-moz-outline-style property
3.6 |
Sets 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 outline-style property instead.
JavaScript page for this property: MozOutlineStyle. You can find other example(s) there. |
Possible values:
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?
|
Supported by tags:
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:
-moz-outline
-moz-outline-color
-moz-outline-offset
-moz-outline-radius
-moz-outline-radius-bottomleft
-moz-outline-radius-bottomright
-moz-outline-radius-topleft
-moz-outline-radius-topright
-moz-outline-width
outline
outline-color
outline-offset
outline-style
outline-width
-moz-outline-color
-moz-outline-offset
-moz-outline-radius
-moz-outline-radius-bottomleft
-moz-outline-radius-bottomright
-moz-outline-radius-topleft
-moz-outline-radius-topright
-moz-outline-width
outline
outline-color
outline-offset
outline-style
outline-width
External links:
User Contributed Comments