border-start-end-radius
border-start-end-radius
CSS 属性定义元素的逻辑边框半径,它映射到物理边框半径,具体取决于元素的 writing-mode
、direction
和 text-orientation
。当构建样式以无论 文本方向 和 书写模式 如何都能正常工作时,这很有用。
试试
此属性会影响元素的块起始侧和内联结束侧之间的角。例如,在 horizontal-tb
书写模式和 ltr
方向中,它对应于 border-top-right-radius
属性。
语法
css
/* <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: revert;
border-start-end-radius: revert-layer;
border-start-end-radius: unset;
值
<length-percentage>
-
表示圆形的半径大小或椭圆的半长轴和半短轴。作为绝对长度,它可以使用 CSS
<length>
数据类型允许的任何单位表示。水平轴的百分比指的是框的宽度,垂直轴的百分比指的是框的高度。负值无效。
正式定义
初始值 | 0 |
---|---|
适用于 | 所有元素;但是,当 border-collapse 为 collapse 时,用户代理不需要将其应用于 table 和 inline-table 元素。目前,内部表格元素的行为是未定义的。它也适用于 ::first-letter 。 |
继承 | 否 |
百分比 | 指的是边框框的相应尺寸 |
计算值 | 两个绝对 <length> 或 <percentage> |
动画类型 | a 长度、百分比 或 calc(); |
正式语法
border-start-end-radius =
<length-percentage [0,∞]>{1,2}
<length-percentage> =
<length> |
<percentage>
示例
带有垂直文本的边框半径
HTML
html
<div>
<p class="exampleText">Example</p>
</div>
CSS
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;
}
结果
规范
规范 |
---|
CSS 逻辑属性和值级别 1 # border-radius-properties |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。