--- title: border-bottom-right-radius slug: Web/CSS/border-bottom-right-radius translation_of: Web/CSS/border-bottom-right-radius ---
The border-bottom-right-radius CSS property sets the rounding of the bottom-right corner of the element.
/* The corner is a circle */ /* border-bottom-right-radius: radius */ border-bottom-right-radius: 3px; /* Percentage values */ border-bottom-right-radius: 20%; /* corner of a circle if box is a square or else corner of a rectangle */ border-bottom-right-radius: 20% 20%; /* same as above */ /* 20% of horizontal(width) and vertical(height) */ border-bottom-right-radius: 20% 10%; /* 20% of horizontal(width) and 10% of vertical(height) */ /*The corner is an ellipsis */ /* border-bottom-right-radius: horizontal vertical */ border-bottom-right-radius: 0.5em 1em; border-bottom-right-radius: inherit;
The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.

A background, being an image or a color, is clipped at the border, even a rounded one; the exact location of the clipping is defined by the value of the {{cssxref("background-clip")}} property.
border-bottom-right-radius CSS property, the value of this property is then reset to its initial value by the shorthand property.{{cssinfo}}
With one value:
With two values:
<length-percentage>| Live example | Code |
|---|---|
|
.
|
An arc of circle is used as the border
div {
border-bottom-right-radius: 40px 40px;
}
|
|
.
|
An arc of ellipse is used as the border
div {
border-bottom-right-radius: 40px 20px;
}
|
|
.
|
The box is a square: an arc of circle is used as the border
div {
border-bottom-right-radius: 40%;
}
|
|
.
|
The box is not a square: an arc of ellipse is used as the border
div {
border-bottom-right-radius: 40%;
}
|
|
.
|
The background color is clipped at the border
div {
border-bottom-right-radius:40%;
border-style: black 3px double;
background-color: rgb(250,20,70);
background-clip: content-box;
}
|
| Specification | Status | Comment |
|---|---|---|
| {{SpecName('CSS3 Backgrounds', '#border-bottom-right-radius', 'border-bottom-right-radius')}} | {{Spec2('CSS3 Backgrounds')}} | Initial definition |
The border-radius-related CSS properties: the CSS shorthand {{cssxref("border-radius")}}, the properties for the other corners: {{cssxref("border-top-right-radius")}}, {{cssxref("border-top-left-radius")}}, and {{cssxref("border-bottom-left-radius")}}.