目录

CSS border-bottom-style 属性


示例

设置底部边框的样式:

div {border-bottom-style: dotted;}
亲自试一试 »

下面有更多 "亲自试一试" 示例。


定义和用法

这个border-bottom-style属性设置元素底部边框的样式。

展示演示❯

默认值: 没有任何
遗传:
可动画: 不。阅读可动画的
版本: CSS1
JavaScript 语法: 对象.style.borderBottomStyle="dotted"尝试一下

浏览器支持

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

Property
border-bottom-style 1.0 5.5 1.0 1.0 9.2


CSS 语法

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: dashed;}
亲自试一试 »

示例

实心底部边框:

div {border-bottom-style: solid;}
亲自试一试 »

示例

双底边框:

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

示例

去掉底部边框:

div {border-bottom-style: none;}
亲自试一试 »

示例

凹槽底部边框:

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 属性