--- title: border-block-style slug: Web/CSS/border-block-style tags: - CSS - Experimental - Propriété - Propriété logique - Reference translation_of: Web/CSS/border-block-style --- {{CSSRef}}{{SeeCompatTable}} La propriété** `border-block-style`** permet de définir le style pour la bordure sur les côtés d'un élément qui correspondent à l'axe de bloc. Cette propriété logique correspond à 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-style")}} et {{cssxref("border-bottom-style")}} ou à {{cssxref("border-left-style")}} et {{cssxref("border-right-style")}} selon les valeurs des propriétés {{cssxref("writing-mode")}}, {{cssxref("direction")}} et {{cssxref("text-orientation")}}. ```css /* Valeurs de type <'border-style'> */ border-block-style: dashed; border-block-style: dotted; border-block-style: groove; ``` Pour les autres côtés, la bordure peut être mise en forme grâce à la propriété {{cssxref("border-inline-style")}} qui définit {{cssxref("border-inline-start-style")}} et {{cssxref("border-inline-end-style")}}. ## Syntaxe ### Valeur - `<'border-style'>` - : Le style de la ligne pour la bordure. Voir {{ cssxref("border-style") }}. ### Syntaxe formelle {{csssyntax}} ## Exemples ### CSS ```css div { background-color: yellow; width: 120px; height: 120px; } .texteExemple { writing-mode: vertical-lr; border: 5px solid blue; border-block-style: dashed; } ``` ### HTML ```html

Texte exemple

``` ### Résultat {{EmbedLiveSample("Exemples", 140, 140)}} ## Spécifications | Spécification | État | Commentaires | | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------ | -------------------- | | {{SpecName("CSS Logical Properties", "#propdef-border-block-style", "border-block-style")}} | {{Spec2("CSS Logical Properties")}} | Définition initiale. | {{cssinfo}} ## Compatibilité des navigateurs {{Compat("css.properties.border-block-style")}} ## Voir aussi - Les propriétés physiques qui correspondent à cette propriété logique : - {{cssxref("border-top-style")}}, - {{cssxref("border-right-style")}}, - {{cssxref("border-bottom-style")}}, - {{cssxref("border-left-style")}}. - {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}}