--- title: border-bottom-right-radius slug: Web/CSS/border-bottom-right-radius tags: - CSS - CSS Borders - CSS Property - Reference - 'recipe:css-property' translation_of: Web/CSS/border-bottom-right-radius ---
border-bottom-right-radius は CSS のプロパティで、角の曲率を定義する楕円の半径 (または半長軸と半短軸の半径) を指定することで、要素の右下の角を丸めます。
このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 https://github.com/mdn/interactive-examples をクローンしてプルリクエストを送信してください。
丸みは円または楕円にすることができ、値のうちの一つが 0 であれば、丸めは行われずに角は四角くなります。

背景は、画像または単色ですが、丸みがあっても境界で切り取られます。切り取られる正確な位置は、 {{cssxref("background-clip")}} プロパティの値で定義されます。
border-bottom-right-radius プロパティの後の {{cssxref("border-radius")}} 一括指定プロパティで設定されなかった場合、このプロパティは一括指定プロパティによって初期値にリセットされます。/* 角を円にする */ /* border-bottom-right-radius: radius */ border-bottom-right-radius: 3px; /* パーセント値 */ border-bottom-right-radius: 20%; /* ボックスが正方形ならば円、長方形ならば楕円 */ border-bottom-right-radius: 20% 20%; /* 上と同じ。水平方向 (width) 及び垂直方向 (height) の 20% */ border-bottom-right-radius: 20% 10%; /* 水平方向 (width) の 20% 及び垂直方向 (height) の 10% */ /* 角を楕円にする */ /* border-bottom-right-radius: horizontal vertical */ border-bottom-right-radius: 0.5em 1em; border-bottom-right-radius: inherit;
値1つで指定する場合:
値2つで指定する場合:
<length-percentage>{{CSSInfo}}
{{csssyntax}}
| ライブ例 | コード |
|---|---|
|
.
|
境界として使用されている円弧
div {
border-bottom-right-radius: 40px 40px;
}
|
|
.
|
境界として使用されている楕円の弧
div {
border-bottom-right-radius: 40px 20px;
}
|
|
.
|
ボックスは正方形。境界として使用されている円弧
div {
border-bottom-right-radius: 40%;
}
|
|
.
|
ボックスは正方形ではない。境界として使用されている楕円の弧
div {
border-bottom-right-radius: 40%;
}
|
|
.
|
背景色は境界で切り取られる
div {
border-bottom-right-radius:40%;
border-style: black 3px double;
background-color: rgb(250,20,70);
background-clip: content-box;
}
|
| 仕様書 | 状態 | 備考 |
|---|---|---|
| {{SpecName('CSS3 Backgrounds', '#border-bottom-right-radius', 'border-bottom-right-radius')}} | {{Spec2('CSS3 Backgrounds')}} | 初回定義 |
{{Compat("css.properties.border-bottom-right-radius")}}