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.

Die border-bottom-width CSS Eigenschaft legt die Breite des unteren Rahmens eines Elements fest.

Probieren Sie es aus

Syntax

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;

Werte

<line-width>

Definiert die Breite des Rahmens, entweder als explizite nicht-negative <length> oder als Schlüsselwort. Falls es ein Schlüsselwort ist, muss es einer der folgenden Werte sein:

  • thin
  • medium
  • thick

Hinweis: Da die Spezifikation die exakte Dicke, die durch jedes Schlüsselwort angegeben wird, nicht festlegt, ist das genaue Ergebnis bei der Verwendung implementationsspezifisch. Dennoch folgen sie immer dem Muster thin ≤ medium ≤ thick, und die Werte sind innerhalb eines Dokuments konstant.

Formale Definition

Initialer Wertmedium
Anwendbar aufalle Elemente. Auch anwendbar auf ::first-letter.
VererbtNein
Berechneter Wertdie absolute Länge; 0 falls border-bottom-style none oder hidden ist
AnimationstypLängenangabe

Formale Syntax

border-bottom-width = 
<line-width>

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

Beispiele

Vergleich der Breiten des unteren Rahmens

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

Ergebnis

Spezifikationen

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

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch