左下边框圆角 - CSS(层叠样式表) 编辑

Summary

总览

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

border-bottom-left-radius.png

一个无论是图像或颜色的背景,都会在边框上被裁剪,即使背景是圆角的; 裁剪的确切位置由 background-clip 属性定义.

如果该属性的值没有被一个在border-bottom-left-radius 属性后,作用于当前元素上的border-radius简写属性设置,那么该属性值将会被shorthand property重置为初始值。
初始值0
适用元素all elements; but User Agents are not required to apply to table and inline-table elements when border-collapse is collapse. The behavior on internal table elements is undefined for the moment.. It also applies to ::first-letter.
是否是继承属性
Percentagesrefer to the corresponding dimension of the border box
计算值two absolute lengths or percentages
Animation typea length, percentage or calc();

语法

/* 圆形 */
/* 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:

radius
Is a <length> or a <percentage> denoting the radius of the circle to use for the border in that corner.
horizontal
Is a <length> or a <percentage> denoting the horizontal semi-major axis of the ellipsis to use for the border in that corner.
vertical
Is a <length> or a <percentage> denoting the vertical semi-major axis of the ellipsis to use for the border in that corner.

Values

<length-percentage>
Denotes the size of the circle radius or the semi-major and semi-minor axes of the ellipsis. As absolute length it can be expressed in any unit allowed by the CSS <length> data type. Percentages for the horizontal axis refer to the width of the box, percentages for the vertical axis refer to the height of the box. Negative values are invalid.

Formal syntax

<length-percentage>{1,2}

where
<length-percentage> = <length> | <percentage>

Examples

Live exampleCode
.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;
}

Specifications

SpecificationStatusComment
CSS Backgrounds and Borders Module Level 3
border-bottom-left-radius
Candidate RecommendationInitial definition

Browser compatibility

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
FeatureChromeEdgeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support1.0 -webkit
4.0
(Yes)-webkit
(Yes)
1.0 (1.0)-moz[1]
4.0 (2.0)[3]
9.010.53.0 (522)-webkit
5.0 (532.5)
Percentages4.0?1.0 (1.0)[2]
4.0 (2.0)
9.010.55.0 (532.5)
Elliptical corners1.0?3.5 (1.9.1)9.010.53.0 (522)
FeatureAndroidEdgeFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Basic support?(Yes)-webkit
(Yes)
(Yes)[3]???
Percentages??(Yes)???
Elliptical corners??(Yes)???

[1] The prefixed version (allowed from Firefox 1 to Firefox 12) of this property uses a different name, -moz-border-radius-bottomleft, than the final property as Mozilla implemented it before the final name was coined.

[2] Before Firefox 4, the <percentage> was relative to the width of the box even when specifying the radius for a height). This implied that -moz-border-radius-bottomleft was always drawing an arc of circle, and never an ellipse, when followed by a single value.

[3] Prior to Gecko 50.0 (Firefox 50.0 / Thunderbird 50.0 / SeaMonkey 2.47), border styles of rounded corners were always rendered as if border-style was solid. This has been fixed in Gecko 50.0.

In addition to the unprefixed support, Gecko 44.0 (Firefox 44.0 / Thunderbird 44.0 / SeaMonkey 2.41) added support for a -webkit prefixed version of the property for web compatibility reasons behind the preference layout.css.prefixes.webkit, defaulting to false. Since Gecko 49.0 (Firefox 49.0 / Thunderbird 49.0 / SeaMonkey 2.46) the preference defaults to true.

See also

The border-radius-related CSS properties: the CSS shorthand border-radius, the properties for the other corners: border-top-right-radius, border-bottom-right-radius, and border-top-left-radius.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:110 次

字数:15738

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文