border-bottom-right-radius
sets the size of the round corner
for bottom right corner.
Item | Value |
---|---|
Initial value | 0 |
Inherited | no |
Version | CSS3 |
JavaScript syntax | object.style.borderBottomRightRadius="5px" |
border-bottom-right-radius: length|% [length|%];
The property values are listed in the following table.
Value | Description |
---|---|
length | set the length for radius |
% | set percentage size for radius |
border-bottom-right-radius |
Yes | 9.0 | Yes | Yes | Yes |
An example showing how to use border-bottom-right-radius CSS property.
<!DOCTYPE html>
<html>
<head>
<style>
div<!--from ww w.j a va 2s. c om-->
{
border:2px solid;
padding:10px;
background:#dddddd;
border-bottom-right-radius:2em;
}
</style>
</head>
<body>
<div>a rounded border.</div>
</body>
</html>