You are here: Reference > JavaScript > client-side > style handling > properties > browser specific extensions > MozOutlineRadiusBottomleft

MozOutlineRadiusBottomleft style property

Browser support:
Sets or retrieves the rounding of the lower left outline corner.

Syntax:

object.MozOutlineRadiusBottomleft;
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-bottomleft

Possible values:

The type of this property is string.
 One of the following values: 
inherit
Takes the value of this property from the computed style of the parent element.
radius in non-negative length
The radius of the outline in length units. For the supported length units, see the length page.
radius in non-negative percentage
The radius is the specified percentage of the width of the object.
Default: 0.

Example HTML code 1:

This example illustrates the use of the -moz-outline-radius-bottomleft property:
<head>
    <style>
        .example {
            outline: 4px solid blue;
            -moz-outline-radius-bottomleft: 30px;
        }
    </style>
</head>
<body>
    <div class="example">Outline with rounded bottomleft corner</div>
</body>
Did you find this example helpful? yes no

Example HTML code 2:

This example illustrates the use of the MozOutlineRadiusBottomleft property in JavaScript:
<head>
    <style>
        .example {
            outline: 4px solid blue;
            -moz-outline-radius-bottomleft: 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 ('MozOutlineRadiusBottomleft' in div.style) {
                div.style.MozOutlineRadiusBottomleft = 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? yes no

Supported by objects:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content