border-inline-start-color
border-inline-start-color
CSS 属性定义元素的逻辑内联起始边框的颜色,根据元素的书写模式、方向性和文本方向映射到物理边框颜色。它对应于 border-top-color
、border-right-color
、border-bottom-color
或 border-left-color
属性,具体取决于为 writing-mode
、direction
和 text-orientation
定义的值。
试一试
语法
css
border-inline-start-color: red;
border-inline-start-color: #ee4141;
/* Global values */
border-inline-start-color: inherit;
border-inline-start-color: initial;
border-inline-start-color: revert;
border-inline-start-color: revert-layer;
border-inline-start-color: unset;
相关属性包括 border-block-start-color
、border-block-end-color
和 border-inline-end-color
,它们定义元素的其他边框颜色。
值
<color>
-
边框的颜色。
正式定义
正式语法
示例
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-inline-start-color: red;
}
规范
规范 |
---|
CSS 逻辑属性和值级别 1 # border-color |
浏览器兼容性
BCD 表格仅在浏览器中加载