border-inline
试试看
border-inline
映射到的物理边框取决于元素的书写模式、方向性和文本方向。它对应于 border-top
和 border-bottom
或 border-right
和 border-left
属性,具体取决于为 writing-mode
、direction
和 text-orientation
定义的值。
另一个维度中的边框可以通过 border-block
设置,它设置 border-block-start
和 border-block-end
。
组成属性
此属性是以下 CSS 属性的简写
语法
css
border-inline: 1px;
border-inline: 2px dotted;
border-inline: medium dashed blue;
/* Global values */
border-inline: inherit;
border-inline: initial;
border-inline: revert;
border-inline: revert-layer;
border-inline: unset;
值
border-inline
使用以下一个或多个值指定,顺序任意
<'border-width'>
-
边框的宽度。参见
border-width
。 <'border-style'>
-
边框的线条样式。参见
border-style
。 <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-rl;
border-inline: 5px dashed blue;
}
结果
规范
规范 |
---|
CSS 逻辑属性和值级别 1 # propdef-border-inline |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。
另请参阅
- CSS 逻辑属性和值
- 此属性映射到一个物理边框属性:
border-top
、border-right
、border-bottom
或border-left
。 writing-mode
、direction
、text-orientation