border-start-end-radius - CSS: Cascading Style Sheets 编辑
The border-start-end-radius
CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's writing-mode
, direction
, and text-orientation
. This is useful when building styles to work regardless of the text orientation and writing mode.
/* <length> values */
/* With one value the corner will be a circle */
border-start-end-radius: 10px;
border-start-end-radius: 1em;
/* With two values the corner will be an ellipse */
border-start-end-radius: 1em 2em;
/* Global values */
border-start-end-radius: inherit;
border-start-end-radius: initial;
border-start-end-radius: unset;
This property affects the corner between the block-start and the inline-end sides of the element. For instance, in a horizontal-tb
writing mode with ltr
direction, it corresponds to the border-top-right-radius
property.
Syntax
Values
<length-percentage>
- Denotes the size of the circle radius or the semi-major and semi-minor axes of the ellipse. 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 definition
Initial value | 0 |
---|---|
Applies to | 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 . |
Inherited | no |
Percentages | refer to the corresponding dimension of the border box |
Computed value | two absolute <length> s or <percentage> s |
Animation type | a length, percentage or calc(); |
Formal syntax
<length-percentage>{1,2}where
<length-percentage> = <length> | <percentage>
Examples
Border radius with vertical text
HTML
<div>
<p class="exampleText">Example</p>
</div>
CSS
div {
background-color: rebeccapurple;
width: 120px;
height: 120px;
border-start-end-radius: 10px;
}
.exampleText {
writing-mode: vertical-rl;
padding: 10px;
background-color: #fff;
border-start-end-radius: 10px;
}
Results
Specifications
Specification | Status | Comment |
---|---|---|
CSS Logical Properties and Values Level 1 The definition of 'border-start-end-radius' in that specification. | Editor's Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
- The mapped physical property:
border-bottom-left-radius
writing-mode
,direction
,text-orientation
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论