outline-style property
8 | ||||
Specifies the style for an element's outline.
The outline is similar to the border of an element, but it is not part of the element's dimensions, and it is displayed around the margin of the element.
Therefore the element's width and height properties do not contain the width of the outline.
Note: The outline-style property is supported in Internet Explorer from version 8.
JavaScript page for this property: outlineStyle. 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. | |||||||
The outline looks as though it were embedded in the canvas with an additional single line. |
Default: none.
Example HTML code 1:
This example illustrates the use of the outline-style property:
|
||||
<head> <style> .example { outline-width: 2px; outline-style: solid; outline-color: blue; } </style> </head> <body> <div class="example">Outline: 2px 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:range, input:reset, input:search, input:submit, input:text, ins, isIndex, kbd, label, legend, li, listing, marquee, menu, nobr, object, ol, optGroup, option, p, plainText, pre, q, rt, ruby, s, samp, select, small, span, strike, strong, sub, sup, table, tBody, td, textArea, tFoot, th, tHead, tr, tt, u, ul, var, xmp
Related pages:
External links:
outline-style (MSDN)
outline-style (Mozilla Developer Center)
outline-style (Safari Reference Library)
outline-style (W3C)
outline-style (Mozilla Developer Center)
outline-style (Safari Reference Library)
outline-style (W3C)
User Contributed Comments