outlineWidth style property
8 | ||||
Specifies or returns the width 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 outlineWidth property is supported in Internet Explorer from version 8.
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: outline-width |
Possible values:
The type of this property is string.
One of the following values:
Takes the value of this property from the computed style of the parent element. | |||||||
Default. | |||||||
The width of the outline in length units. For the supported length units, see the length page. | |||||||
Greater than the medium width. | |||||||
Less than the medium width. |
Default: medium.
Example HTML code 1:
This example illustrates the use of the outline-width 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?
|
Example HTML code 2:
This example illustrates the use of the outlineWidth property in JavaScript:
|
||||
<head> <script type="text/javascript"> function ChangeOutline (selectTag) { // Returns the index of the selected option var whichSelected = selectTag.selectedIndex; // Returns the text of the selected option var widthValue = selectTag.options[whichSelected].text; var div = document.getElementById ("myDiv"); if ('outlineWidth' in div.style) { div.style.outlineWidth = widthValue; } else { alert ("Your browser doesn't support this example!"); } } </script> </head> <body> <div id="myDiv" style="outline: 4px solid blue;">Change outline width</div> <br /><br /><br /> <select onchange="ChangeOutline (this);" size="8"> <option />1px <option />2px <option selected="selected" />4px <option />6px <option />8px <option />10px <option />15px <option />25px </select> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
CSSStyleDeclaration, htmlElement.currentStyle, htmlElement.runtimeStyle, 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: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-width (MSDN)
outline-width (Mozilla Developer Center)
outline-width (Safari Reference Library)
outline-width (W3C)
outline-width (Mozilla Developer Center)
outline-width (Safari Reference Library)
outline-width (W3C)
User Contributed Comments