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

MozBorderRadiusBottomright style property | webkitBorderBottomRightRadius style property

Browser support:
MozBorderRadiusBottomright
webkitBorderBottomRightRadius
Sets or retrieves the rounding of the lower right corner of the border.

Syntax:

object.MozBorderRadiusBottomright;
object.webkitBorderBottomRightRadius;
You can find the related objects in the Supported by objects section below.
MozBorderRadiusBottomright: This property is read/write.
webkitBorderBottomRightRadius: This property is read/write.
CSS page for this property: -moz-border-radius-bottomright

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 bottom-right border 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-border-radius-bottomright and the -webkit-border-bottom-right-radius properties:
<head>
    <style>
        .example {
            border: 3px solid red;
            -moz-border-radius-bottomright: 30px;
            -webkit-border-bottom-right-radius: 30px;
        }
    </style>
</head>
<body>
    <div class="example">
        Border with bottom-right rounded corner
    </div>
</body>
Did you find this example helpful? yes no

Example HTML code 2:

This example illustrates the use of the MozBorderRadiusBottomright and webkitBorderBottomRightRadius properties in JavaScript:
<head>
    <style>
        .example {
            border: 3px solid red;
            -moz-border-radius-bottomright: 30px;
        }
    </style>

    <script type="text/javascript">
        function ChangeBorderColors () {
            var div = document.getElementById ("myDiv");
            var input = document.getElementById ("myInput");

            if ('MozBorderRadiusBottomright' in div.style) {
                div.style.MozBorderRadiusBottomright = input.value + "px";
            } else if ('webkitBorderBottomRightRadius' in div.style) {
                div.style.webkitBorderBottomRightRadius = input.value + "px";
            } else {
                alert ("Your browser doesn't support this example!");
            }
        }
    </script>
</head>
<body>
    <div class="example" id="myDiv">
        Border with rounded corners
    </div>

    <input id="myInput" type="text" value="10" />

    <button onclick="ChangeBorderColors ();">Change bottom-right border radius!</button>
</body>
Did you find this example helpful? yes no

Supported by objects:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content