border-block-width
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2021.
Die border-block-width CSS Eigenschaft definiert die Breite der logischen Blockränder eines Elements, die je nach Schreibmodus, Richtung und Textorientierung des Elements einer physischen Rahmenbreite entspricht. Sie entspricht der border-top-width und border-bottom-width, oder border-left-width, und border-right-width Eigenschaft, je nach den festgelegten Werten für writing-mode, direction und text-orientation.
Die Rahmenbreite in der anderen Dimension kann mit border-inline-width festgelegt werden, was border-inline-start-width und border-inline-end-width setzt.
Probieren Sie es aus
border-block-width: thick; writing-mode: horizontal-tb; border-block-width: thick; writing-mode: vertical-rl; border-block-width: 4px; writing-mode: horizontal-tb; direction: rtl; <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; unicode-bidi: bidi-override; } Syntax
/* <'border-width'> values */ border-block-width: 5px; border-block-width: thick; /* Global values */ border-block-width: inherit; border-block-width: initial; border-block-width: revert; border-block-width: revert-layer; border-block-width: unset; Werte
<'border-width'>-
Die Breite des Rahmens. Siehe
border-width.
Formale Definition
| Anfangswert | medium |
|---|---|
| Anwendbar auf | alle Elemente |
| Vererbt | Nein |
| Prozentwerte | logische Breite des beinhaltenden Blocks |
| Berechneter Wert | absolute Länge; 0, falls der Rahmenstil none oder hidden ist |
| Animationstyp | by computed value type |
Formale Syntax
border-block-width =
<'border-top-width'>{1,2}
<border-top-width> =
<line-width>
<line-width> =
<length [0,∞]> |
thin |
medium |
thick
Beispiele
>Rahmenbreite mit vertikalem Text
HTML
<div> <p class="exampleText">Example text</p> </div> CSS
div { background-color: yellow; width: 120px; height: 120px; } .exampleText { writing-mode: vertical-lr; border: 1px solid blue; border-block-width: 5px; } Ergebnisse
Spezifikationen
| Specification |
|---|
| CSS Logical Properties and Values Level 1> # propdef-border-block-width> |
Browser-Kompatibilität
Siehe auch
- CSS Logische Eigenschaften und Werte
- Diese Eigenschaft entspricht einer der physischen Rahmen-Eigenschaften:
border-top-width,border-right-width,border-bottom-width, undborder-left-width writing-mode,direction,text-orientation