border-block-end-width
**border-block-end-width
** CSS 属性定义元素的逻辑块结束边框的宽度,根据元素的书写模式、方向性和文本方向映射到物理边框宽度。它对应于 border-top-width
、border-right-width
、border-bottom-width
或 border-left-width
属性,具体取决于为 writing-mode
、direction
和 text-orientation
定义的值。
试一试
语法
css
/* <'border-width'> values */
border-block-end-width: 5px;
border-block-end-width: thick;
/* Global values */
border-block-end-width: inherit;
border-block-end-width: initial;
border-block-end-width: revert;
border-block-end-width: revert-layer;
border-block-end-width: unset;
相关属性有 border-block-start-width
、border-inline-start-width
和 border-inline-end-width
,它们定义元素的其他边框宽度。
值
<'border-width'>
-
边框的宽度。请参阅
border-width
。
正式定义
正式语法
border-block-end-width =
<line-width>
<line-width> =
<length [0,∞]> |
thin |
medium |
thick
示例
带有垂直文本的边框宽度
HTML
html
<div>
<p class="exampleText">Example text</p>
</div>
CSS
css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-lr;
border: 1px solid blue;
border-block-end-width: 5px;
}
结果
规范
规范 |
---|
CSS 逻辑属性和值级别 1 # border-width |
浏览器兼容性
BCD 表格仅在浏览器中加载