border-bottom-right-radius - CSS(层叠样式表) 编辑
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 background-clip
property.
border-radius
shorthand property that is applied to the element after the border-bottom-right-radius
CSS property, the value of this property is then reset to its initial value by the 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 . |
是否是继承属性 | 否 |
Percentages | refer to the corresponding dimension of the border box |
适用媒体 | visual |
计算值 | two absolute length s or percentage s |
Animation type | a length, percentage or calc(); |
正规顺序 | the unique non-ambiguous order defined by the formal grammar |
Syntax
With one value:
- the value is a
<length>
or a<percentage>
denoting the radius of the circle to use for the border in that corner.
With two values:
- the first value is a
<length>
or a<percentage>
denoting the horizontal semi-major axis of the ellipsis to use for the border in that corner. - the second value is 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 example | Code |
---|---|
. | An arc of circle is used as the border
|
. | An arc of ellipse is used as the border
|
. | The box is a square: an arc of circle is used as the border
|
. | The box is not a square: an arc of ellipse is used as the border
|
. | The background color is clipped at the border
|
Specifications
Specification | Status | Comment |
---|---|---|
CSS Backgrounds and Borders Module Level 3 border-bottom-right-radius | Candidate Recommendation | Initial 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!Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 1.0 -webkit 4.0 | (Yes)-webkit (Yes) | 1.0 (1.0)-moz[1] 4.0 (2.0)[3] | 9.0 | 10.5 | 3.0 (522)-webkit 5.0 (532.5) |
Percentages | 4.0 | (Yes) | 1.0 (1.0)[2] 4.0 (2.0) | 9.0 | 10.5 | 5.0 (532.5) |
Elliptical corners | 1.0 | (Yes) | 3.5 (1.9.1) | 9.0 | 10.5 | 3.0 (522) |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | ? | (Yes)-webkit (Yes) | (Yes)[3] | ? | ? | ? |
Percentages | ? | (Yes) | (Yes) | ? | ? | ? |
Elliptical corners | ? | (Yes) | (Yes) | ? | ? | ? |
[1] The prefixed version (allowed from Firefox 1 to Firefox 12) of this property uses a different name, -moz-border-radius-bottomright
.
[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-bottomright
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-top-left-radius
, and border-bottom-left-radius
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论