border-block-start-width

Baseline Widely available

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

Die border-block-start-width CSS Eigenschaft definiert die Breite des logischen Blockstart-Rahmens eines Elements, der je nach Schreibmodus, Richtung und Textorientierung des Elements einer physikalischen Rahmenbreite zugeordnet wird. Sie entspricht der border-top-width, border-right-width, border-bottom-width, oder border-left-width Eigenschaft, je nachdem, welche Werte für writing-mode, direction, und text-orientation definiert sind.

Probieren Sie es aus

Syntax

css
/* <'border-width'> values */
border-block-start-width: 5px;
border-block-start-width: thick;

/* Global values */
border-block-start-width: inherit;
border-block-start-width: initial;
border-block-start-width: revert;
border-block-start-width: revert-layer;
border-block-start-width: unset;

Verwandte Eigenschaften sind border-block-end-width, border-inline-start-width, und border-inline-end-width, die die anderen Rahmenbreiten des Elements definieren.

Werte

<'border-width'>

Die Breite des Rahmens. Siehe border-width.

Formale Definition

Initialer Wertmedium
Anwendbar aufalle Elemente
VererbtNein
Prozentwertelogische Breite des beinhaltenden Blocks
Berechneter Wertabsolute Länge; 0, falls der Rahmenstil none oder hidden ist
Animationstypby computed value type

Formale Syntax

border-block-start-width = 
<line-width>

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

Beispiele

Rahmenbreite mit vertikalem Text

HTML

html
<div>
  <p class="exampleText">Example text</p>
</div>

CSS

css
div {
  background-color: yellow;
  width: 120px;
  height: 120px;
}

.exampleText {
  writing-mode: vertical-lr;
  border: 1px solid blue;
  border-block-start-width: 5px;
}

Ergebnisse

Spezifikationen

Specification
CSS Logical Properties and Values Level 1
# border-width

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch