1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
---
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
---
{{CSSRef}}{{SeeCompatTable}}
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")}}.
```css
/* 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}}
## Syntaxe
### Valeur
- `<'border-width'>`
- : La largeur de la bordure. Voir {{ cssxref("border-width") }}.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### CSS
```css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.texteExemple {
writing-mode: vertical-lr;
border: 1px solid blue;
border-block-width: 5px 10px;
}
```
### HTML
```html
<div>
<p class="texteExemple">Texte d'exemple</p>
</div>
```
### Résultat
{{EmbedLiveSample("Exemples", 140, 140)}}
## Spécifications
| Spécification | État | Commentaires |
| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------ | -------------------- |
| {{SpecName("CSS Logical Properties", "#propdef-border-block-width", "border-block-width")}} | {{Spec2("CSS Logical Properties")}} | Définition initiale. |
## Compatibilité des navigateurs
{{Compat("css.properties.border-block-width")}}
## Voir aussi
- Les propriétés physiques qui peuvent correspondre à cette propriété logique {{cssxref("border-top-width")}}, {{cssxref("border-right-width")}}, {{cssxref("border-bottom-width")}}, and {{cssxref("border-left-width")}}
- {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}}
|