border-bottom-width

**border-bottom-width** CSS 属性设置元素底部边框的宽度。

试一试

语法

css
/* Keyword values */
border-bottom-width: thin;
border-bottom-width: medium;
border-bottom-width: thick;

/* <length> values */
border-bottom-width: 10em;
border-bottom-width: 3vmax;
border-bottom-width: 6px;

/* Global keywords */
border-bottom-width: inherit;
border-bottom-width: initial;
border-bottom-width: revert;
border-bottom-width: revert-layer;
border-bottom-width: unset;

<line-width>

定义边框的宽度,可以是显式的非负 <length> 或一个关键字。如果是关键字,则必须是以下值之一

  • thin
  • medium
  • thick

注意:由于规范没有定义每个关键字表示的确切厚度,因此使用其中一个关键字时的精确结果是特定于实现的。但是,它们始终遵循模式 thin ≤ medium ≤ thick,并且值在单个文档内是恒定的。

正式定义

初始值medium
应用于所有元素。它也适用于 ::first-letter
继承
计算值绝对长度或 0(如果 border-bottom-stylenonehidden
动画类型一个 长度

正式语法

border-bottom-width = 
<line-width>

<line-width> =
<length [0,∞]> |
thin |
medium |
thick

示例

比较底部边框宽度

HTML

html
<div>Element 1</div>
<div>Element 2</div>

CSS

css
div {
  border: 1px solid red;
  margin: 1em 0;
}

div:nth-child(1) {
  border-bottom-width: thick;
}
div:nth-child(2) {
  border-bottom-width: 2em;
}

结果

规范

规范
CSS 背景和边框模块级别 3
# the-border-width

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅