border-block-start-color

CSS 属性 border-block-start-color 定义了元素的逻辑块首的边框颜色,并根据元素的书写模式、行内方向和文本朝向对应至实体边框颜色。根据 writing-modedirectiontext-orientation 所定义的值,此属性对应于 border-top-colorborder-right-colorborder-bottom-colorborder-left-color 属性。

尝试一下

语法

css
border-block-start-color: blue;
border-block-start-color: #4c5d21;

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

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

取值

形式定义

初始值currentcolor
适用元素all elements
是否是继承属性
计算值computed color
Animation typeby computed value type

形式语法

border-block-start-color = 
<color> |
<image-1D>

<image-1D> =
<stripes()>

<stripes()> =
stripes( <color-stripe># )

<color-stripe> =
<color> &&
[ <length-percentage> | <flex> ]?

<length-percentage> =
<length> |
<percentage>

示例

竖排文本的边框颜色

HTML

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

CSS

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

.exampleText {
  writing-mode: vertical-lr;
  border: 10px solid blue;
  border-block-start-color: red;
}

结果

规范

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

浏览器兼容性

BCD tables only load in the browser

参见