border-block-start-style

**border-block-start-style** 属性定义元素逻辑块起始边框的样式,它映射到物理边框样式,具体取决于元素的书写模式、方向性和文本方向。 它对应于 border-top-styleborder-right-styleborder-bottom-style 或者 border-left-style 属性,具体取决于 writing-modedirection 以及 text-orientation 的定义值。

试一试

语法

css
/* <'border-style'> values */
border-block-start-style: dashed;
border-block-start-style: dotted;
border-block-start-style: groove;

/* Global values */
border-block-start-style: inherit;
border-block-start-style: initial;
border-block-start-style: revert;
border-block-start-style: revert-layer;
border-block-start-style: unset;

相关的属性有 border-block-end-styleborder-inline-start-style 以及 border-inline-end-style,它们定义元素的其他边框样式。

Values

<'border-style'>

边框的线型。请参考 border-style

正式定义

初始值none
适用元素所有元素
继承no
计算值指定的值
动画类型discrete

正式语法

border-block-start-style = 
<line-style>

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

示例

带有垂直文本的虚线边框

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: 5px solid blue;
  border-block-start-style: dashed;
}

结果

规范

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

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅