下面有更多 "亲自试一试" 示例。
这个border-bottom-style
属性设置元素底部边框的样式。
表中的数字指定完全支持该属性的第一个浏览器版本。
Property | |||||
---|---|---|---|---|---|
border-bottom-style | 1.0 | 5.5 | 1.0 | 1.0 | 9.2 |
border-bottom-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-bottom-style: groove;
border-bottom-color: coral;
border-bottom-width: 7px;
}
亲自试一试 »
脊底边框:
div {
border-bottom-style: ridge;
border-bottom-color: coral;
border-bottom-width: 7px;
}
亲自试一试 »
插入底部边框:
div {
border-bottom-style: inset;
border-bottom-color: coral;
border-bottom-width: 7px;
}
亲自试一试 »
起始底部边框:
div {
border-bottom-style: outset;
border-bottom-color: coral;
border-bottom-width: 7px;
}
亲自试一试 »
CSS教程:CSS 边框
CSS 参考:边框底部属性
HTML DOM 参考:borderBottomStyle 属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!