64 of 313 menu

The border-bottom-right-radius property

The border-bottom-right-radius property creates a rounding for a bottom-right corner of a border and background. The property value is any size units. Default value: 0.

Syntax

selector { border-bottom-right-radius: value; }

Example

We set the rounding to 10px for the bottom-right corner:

<div id="elem"></div> #elem { border-bottom-right-radius: 10px; border: 1px solid black; width: 300px; height: 100px; }

:

See also

byenru