You are here: Reference > CSS > properties > browser specific extensions > -moz-outline-radius-bottomright

-moz-outline-radius-bottomright property

Browser support:
Sets the rounding of the lower right outline corner.
JavaScript page for this property: MozOutlineRadiusBottomright. You can find other example(s) there.

Possible values:

 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-bottomright property:
<head>
    <style>
        .example {
            outline: 4px solid blue;
            -moz-outline-radius-bottomright: 30px;
        }
    </style>
</head>
<body>
    <div class="example">Outline with rounded bottomright corner</div>
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content