border-block-end

CSS 属性 border-block-end简写属性,用于在样式表中的某处同时设置逻辑块末边框的各属性值。

尝试一下

属性构成

此属性为下列 CSS 属性的简写属性:

语法

css
border-block-end: 1px;
border-block-end: 2px dotted;
border-block-end: medium dashed blue;

/* 全局值 */
border-block-end: inherit;
border-block-end: initial;
border-block-end: revert;
border-block-end: revert-layer;
border-block-end: unset;

border-block-end 可用于设置 border-block-end-widthborder-block-end-styleborder-block-end-color 中至少一个属性的值。此属性所对应的实体边框取决于元素的书写模式、行内方向和文本朝向。根据 writing-modedirectiontext-orientation 所定义的值,此属性对应于 border-topborder-rightborder-bottomborder-left 属性。

与此相关的属性有 border-block-startborder-inline-startborder-inline-end,这些属性定义了元素的其他边框。

取值

border-block-end 属性可用下列值中的至少一个指定,次序任意:

<'border-width'>

边框宽度。见 border-width

<'border-style'>

边框线型。见 border-style

<'color'>

边框颜色。见 color

形式定义

初始值as each of the properties of the shorthand:
适用元素all elements
是否是继承属性
计算值as each of the properties of the shorthand:
Animation typeas each of the properties of the shorthand:

形式语法

border-block-end = 
<line-width> ||
<line-style> ||
<color>

<line-width> =
<length [0,∞]> |
thin |
medium |
thick

<line-style> =
none |
hidden |
dotted |
dashed |
solid |
double |
groove |
ridge |
inset |
outset

示例

竖排文本的边框

HTML

html
<div>
  <p class="exampleText">示例文本</p>
</div>

CSS

css
div {
  background-color: yellow;
  width: 120px;
  height: 120px;
}

.exampleText {
  writing-mode: vertical-rl;
  border-block-end: 5px dashed blue;
}

结果

规范

Specification
CSS Logical Properties and Values Level 1
# border-shorthands

浏览器兼容性

BCD tables only load in the browser

参见