目录

CSS border-inline 属性


示例

设置内联方向不同元素的边框样式、颜色和宽度:

h1 {
  border-inline: 5px solid red;
}

h2 {
  border-inline: 4px dotted blue;
}

div {
  border-inline: double;
}
亲自试一试 »

定义和用法

这个border-inlineproperty 是这些属性的简写属性:

如果省略颜色或宽度值,则将使用默认值。

CSSborder-inline属性与 CSS 属性非常相似border,但是border-inline属性取决于内联方向。

笔记:相关CSS属性writing-mode,text-orientationdirection定义内联方向。这会影响一行的开始和结束位置以及结果border-inline属性。对于英文页面,内联方向是从左到右,块方向是向下。

展示演示❯

默认值: 中等 无颜色
遗传:
可动画: 是的,查看各个属性阅读可动画的尝试一下
版本: CSS3
JavaScript 语法: 对象.style.borderInline="dashed hotpink 10px"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
border-inline 87.0 87.0 66.0 14.1 73.0


CSS 语法

border-inline: border-inline-width border-inline-style border-inline-color |initial|inherit;

属性值

Value Description Demo
border-inline-width Specifies the width of the borders in the inline direction. Default value is "medium" Demo ❯
border-inline-style Specifies the style of the borders in the inline direction. Default value is "none" Demo ❯
border-inline-color Specifies the color of the borders in the inline direction. Default value is the color of the text Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

更多示例

具有写入模式属性

内联方向开始和结束的边框位置受writing-mode属性:

div {
  writing-mode: vertical-rl;
  border-inline: hotpink dashed 8px;
}
亲自试一试 »

相关页面

CSS教程:CSS 边框

CSS边框属性:CSS 边框属性

CSS border-inline-color 属性:CSS Border-inline-color 属性

CSS border-inline-style 属性:CSS Border-inline-style 属性

CSS border-inline-width 属性:CSS Border-inline-width 属性

CSS方向属性:CSS 方向属性

CSS 文本方向属性:CSS 文本方向属性

CSS 写入模式属性:CSS 书写模式属性