--- title: 左下边框圆角 slug: Web/CSS/border-bottom-left-radius translation_of: Web/CSS/border-bottom-left-radius ---
总览
border-bottom-left-radius 这个css属性设置元素左下角的圆角。圆角可以是圆或椭圆(注:应为圆或椭圆的一部分),或者当其中一个值为0时,圆角将不被设置,这时这个角将展示为直角。

一个无论是图像或颜色的背景,都会在边框上被裁剪,即使背景是圆角的; 裁剪的确切位置由 {{cssxref("background-clip")}} 属性定义.
border-bottom-left-radius 属性后,作用于当前元素上的{{cssxref("border-radius")}}简写属性设置,那么该属性值将会被shorthand property重置为初始值。{{cssinfo}}
/* 圆形 */ /* border-bottom-left-radius: radius */ border-bottom-left-radius: 3px; /* 椭圆形 */ /* border-bottom-left-radius: 水平方向 垂直方向 */ border-bottom-left-radius: 0.5em 1em; border-bottom-left-radius: inherit;
where:
<length-percentage>| Live example | Code |
|---|---|
|
.
|
An arc of circle is used as the border
div {
border-bottom-left-radius: 40px 40px;
}
|
|
.
|
An arc of ellipse is used as the border
div {
border-bottom-left-radius: 40px 20px;
}
|
|
.
|
The box is a square: an arc of circle is used as the border
div {
border-bottom-left-radius: 40%;
}
|
|
.
|
The box is not a square: an arc of ellipse is used as the border
div {
border-bottom-left-radius: 40%;
}
|
|
.
|
The background color is clipped at the border
div {
border-bottom-left-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-left-radius', 'border-bottom-left-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-bottom-right-radius")}}, and {{cssxref("border-top-left-radius")}}.