下面有更多 "亲自试一试" 示例。
这个border-left-style
属性设置元素左边框的样式。
表中的数字指定完全支持该属性的第一个浏览器版本。
Property | |||||
---|---|---|---|---|---|
border-left-style | 1.0 | 5.5 | 1.0 | 1.0 | 9.2 |
border-left-style: none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|initial|inherit;
Value | Description | Demo |
---|---|---|
none | Specifies no border. This is default | Demo ❯ |
hidden | The same as "none", except in border conflict resolution for table elements | Demo ❯ |
dotted | Specifies a dotted border | Demo ❯ |
dashed | Specifies a dashed border | Demo ❯ |
solid | Specifies a solid border | Demo ❯ |
double | Specifies a double border | Demo ❯ |
groove | Specifies a 3D grooved border. The effect depends on the border-color value | Demo ❯ |
ridge | Specifies a 3D ridged border. The effect depends on the border-color value | Demo ❯ |
inset | Specifies a 3D inset border. The effect depends on the border-color value | Demo ❯ |
outset | Specifies a 3D outset border. The effect depends on the border-color value | Demo ❯ |
initial | Sets this property to its default value. Read about initial | |
inherit | Inherits this property from its parent element. Read about inherit |
左边框有凹槽:
div {
border-left-style: groove;
border-left-color: coral;
border-left-width: 7px;
}
亲自试一试 »
脊左边界:
div {
border-left-style: ridge;
border-left-color: coral;
border-left-width: 7px;
}
亲自试一试 »
插入左边框:
div {
border-left-style: inset;
border-left-color: coral;
border-left-width: 7px;
}
亲自试一试 »
起始左边框:
div {
border-left-style: outset;
border-left-color: coral;
border-left-width: 7px;
}
亲自试一试 »
CSS教程:CSS 边框
CSS 参考:左边框属性
HTML DOM 参考:borderLeftStyle 属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!