You are here: Reference > JavaScript > client-side > style handling > properties > browser specific extensions > MozOutlineRadius
MozOutlineRadius style property
Sets or retrieves the rounding of the outline corners.
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-radius |
Possible values:
The type of this property is string.
One of the following values: | ||||||||||||||
|
Description of values:
Takes the value of this property from the computed style of the parent element. | |||||||
The radius of the outline in length units. For the supported length units, see the length page. | |||||||
The radius is the specified percentage of the width of the object. |
Default: 0.
If only one radius value is set, it is used for all four corners. If two radius values are specified, the first value is used for the top-left and bottom-right corners, the second one is for the top-right and bottom-left corners. If three radius values are set, the first value is used for the top-left corner, the second one is for the top-right and bottom-left corners and the third one is for the bottom-left corners. If four radius values are specified, the order is top-left, top-right, bottom-right, bottom-left (clockwise from top-left). |
Example HTML code 1:
This example illustrates the use of the -moz-outline-radius property:
|
||||
<head> <style> .example { outline: 4px solid blue; -moz-outline-radius: 30px; } </style> </head> <body> <div class="example">Outline with rounded corners</div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the MozOutlineRadius property in JavaScript:
|
||||
<head> <style> .example { outline: 4px solid blue; -moz-outline-radius: 6px; width: 100px; } </style> <script type="text/javascript"> function ChangeOutlineRadius (selectTag) { // Returns the index of the selected option var whichSelected = selectTag.selectedIndex; // Returns the text of the selected option var radius = selectTag.options[whichSelected].text; var div = document.getElementById ("myDiv"); if ('MozOutlineRadius' in div.style) { div.style.MozOutlineRadius = radius + "px"; } else { alert ("Your browser doesn't support this example!"); } } </script> </head> <body> <div id="myDiv" class="example">Change outline radius</div> <select onchange="ChangeOutlineRadius (this);" size="8"> <option />1 <option />3 <option selected="selected" />6 <option />10 <option />14 <option />20 <option />25 <option />30 </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
MozOutlineRadiusBottomleft
MozOutlineRadiusBottomright
MozOutlineRadiusTopleft
MozOutlineRadiusTopright
MozOutlineStyle
MozOutlineWidth
outline
outlineColor
outlineOffset
outlineStyle
outlineWidth
MozOutlineColor
MozOutlineOffset
MozOutlineRadiusBottomleft
MozOutlineRadiusBottomright
MozOutlineRadiusTopleft
MozOutlineRadiusTopright
MozOutlineStyle
MozOutlineWidth
outline
outlineColor
outlineOffset
outlineStyle
outlineWidth
External links:
User Contributed Comments