--- 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 ---
{{CSSRef}}

border-bottom-right-radiusCSS のプロパティで、角の曲率を定義する楕円の半径 (または半長軸と半短軸の半径) を指定することで、要素の右下の角を丸めます。

{{EmbedInteractiveExample("pages/css/border-bottom-right-radius.html")}}

丸みは円または楕円にすることができ、値のうちの一つが 0 であれば、丸めは行われずに角は四角くなります。

border-bottom-right-radius.png

背景は、画像または単色ですが、丸みがあっても境界で切り取られます。切り取られる正確な位置は、 {{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>
円の半径または楕円の長半径及び短半径を示します。絶対的な長さの場合は、 CSS の {{cssxref("<length>")}} データ型で表現することができます。水平軸のパーセント値はボックスの幅、垂直軸のパーセント軸はボックスの高さに対する値です。負の数は無効です。

公式定義

{{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")}}

関連情報