设置内联方向不同元素的边框样式、颜色和宽度:
h1 {
border-inline: 5px solid red;
}
h2 {
border-inline: 4px dotted blue;
}
div {
border-inline: double;
}
亲自试一试 »
这个border-inline
property 是这些属性的简写属性:
如果省略颜色或宽度值,则将使用默认值。
CSSborder-inline
属性与 CSS 属性非常相似border
,但是border-inline
属性取决于内联方向。
笔记:相关CSS属性writing-mode
,text-orientation
和direction
定义内联方向。这会影响一行的开始和结束位置以及结果border-inline
属性。对于英文页面,内联方向是从左到右,块方向是向下。
默认值: | 中等 无颜色 |
---|---|
遗传: | 不 |
可动画: | 是的,查看各个属性。阅读可动画的尝试一下 |
版本: | CSS3 |
JavaScript 语法: | 对象.style.borderInline="dashed hotpink 10px"尝试一下 |
表中的数字指定完全支持该属性的第一个浏览器版本。
Property | |||||
---|---|---|---|---|---|
border-inline | 87.0 | 87.0 | 66.0 | 14.1 | 73.0 |
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 书写模式属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!