--- title: border-block-width slug: Web/CSS/border-block-width tags: - CSS - Experimental - Propriété - Propriété logique - Reference translation_of: Web/CSS/border-block-width ---
La propriété border-block-width
définit la largeur de la bordure sur les côtés d'un élément sur les côtés de l'axe de bloc. Cette propriété logique peut correspondre à différentes propriétés physiques selon le mode d'écriture, la direction et l'orientation du texte. Autrement dit, cette propriété correspond à {{cssxref("border-top-width")}} et {{cssxref("border-bottom-width")}} ou à {{cssxref("border-left-width")}} et {{cssxref("border-right-width")}} selon les valeurs des propriétés {{cssxref("writing-mode")}}, {{cssxref("direction")}} et {{cssxref("text-orientation")}}.
/* Valeurs de type <'border-width'> */ border-block-width: 5px 10px; border-block-width: 5px; border-block-width: thick;
The border width in the other dimension can be set with {{cssxref("border-inline-width")}}, which sets {{cssxref("border-block-inline-width")}}, and {{cssxref("border-block-inline-width")}}.
{{cssinfo}}
<'border-width'>
{{csssyntax}}
div { background-color: yellow; width: 120px; height: 120px; } .texteExemple { writing-mode: vertical-lr; border: 1px solid blue; border-block-width: 5px 10px; }
<div> <p class="texteExemple">Texte d'exemple</p> </div>
{{EmbedLiveSample("Exemples", 140, 140)}}
Spécification | État | Commentaires |
---|---|---|
{{SpecName("CSS Logical Properties", "#propdef-border-block-width", "border-block-width")}} | {{Spec2("CSS Logical Properties")}} | Définition initiale. |
{{Compat("css.properties.border-block-width")}}