border-inline-color

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2021.

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

尝试一下

另一方向的边框颜色可用 border-block-color 设置,此属性会设置 border-block-start-colorborder-block-end-color

语法

css
border-inline-color: yellow;
border-inline-color: #f5f6f7;

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

取值

<'color'>

边框颜色。见 color

形式定义

初始值currentcolor
适用元素所有元素
是否是继承属性
计算值颜色计算值
动画类型按计算值的类型

形式语法

border-inline-color = 
<'border-top-color'>{1,2}

<border-top-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-inline-color: red;
}

结果

规范

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

浏览器兼容性

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
border-inline-color

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

参见