border-bottom-width

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Thuộc tính border-bottom-width trong CSS đặt độ rộng của đường viền phía dưới của một phần tử.

Try it

border-bottom-width: thick;
border-bottom-width: 2em;
border-bottom-width: 4px;
border-bottom-width: 2ex;
border-bottom-width: 0;
<section class="default-example" id="default-example">
  <div class="transition-all" id="example-element">
    This is a box with a border around it.
  </div>
</section>
#example-element {
  background-color: palegreen;
  color: black;
  border: 0 solid crimson;
  padding: 0.75em;
  width: 80%;
  height: 100px;
}

Cú pháp

css
/* Giá trị từ khóa */
border-bottom-width: thin;
border-bottom-width: medium;
border-bottom-width: thick;

/* Giá trị <length> */
border-bottom-width: 10em;
border-bottom-width: 3vmax;
border-bottom-width: 6px;

/* Giá trị toàn cục */
border-bottom-width: inherit;
border-bottom-width: initial;
border-bottom-width: revert;
border-bottom-width: revert-layer;
border-bottom-width: unset;

Giá trị

<line-width>

Xác định độ rộng của đường viền, dưới dạng giá trị <length> không âm tường minh hoặc một từ khóa. Nếu là từ khóa, nó phải là một trong các giá trị sau:

  • thin
    • Tương đương 1px.
  • medium
    • Tương đương 3px.
  • thick
    • Tương đương 5px.

Định nghĩa hình thức

Initial valuemedium
Applies toall elements. It also applies to ::first-letter.
Inheritedno
Computed valuethe absolute length or 0 if border-bottom-style is none or hidden
Animation typea length

Cú pháp hình thức

border-bottom-width = 
<line-width>

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

Ví dụ

So sánh độ rộng đường viền dưới

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;
}

Kết quả

Đặc tả kỹ thuật

Specification
CSS Backgrounds and Borders Module Level 3
# border-width

Tương thích trình duyệt

Xem thêm