border-block-start-color

border-block-start-color CSS 属性定义元素的逻辑块起始边框的颜色,该颜色根据元素的书写模式、方向和文本方向映射到物理边框颜色。它对应于 border-top-colorborder-right-colorborder-bottom-colorborder-left-color 属性,具体取决于为 writing-modedirectiontext-orientation 定义的值。

试一试

语法

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

/* Global values */
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,它们定义元素的其他边框颜色。

<color>

边框的颜色。

正式定义

初始值currentcolor
应用于所有元素
继承
计算值计算颜色
动画类型按计算值类型

正式语法

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">Example text</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;
}

结果

规范

规范
CSS 逻辑属性和值级别 1
# border-color

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅