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
82
83
84
85
86
87
88
|
---
title: border-block-end-width
slug: Web/CSS/border-block-end-width
tags:
- CSS
- Experimental
- Propriété
- Reference
translation_of: Web/CSS/border-block-end-width
---
{{CSSRef}}{{SeeCompatTable}}
La propriété **`border-block-end-width`** définit la largeur de la bordure pour le côté de bloc de la fin « logique » de l'élément. Cette propriété logique correspond à l'une des propriétés physiques équivalentes en fonction du mode d'écriture, de la directionnalité et de l'orientation du texte. Autrement dit, elle correspondra à {{cssxref("border-top-width")}}, {{cssxref("border-right-width")}}, {{cssxref("border-bottom-width")}} ou a {{cssxref("border-left-width")}} selon les valeurs des propriétés pour {{cssxref("writing-mode")}}, {{cssxref("direction")}} et {{cssxref("text-orientation")}}.
{{EmbedInteractiveExample("pages/css/border-block-end-width.html")}}
Cette propriété logique est à rapprocher des autres propriétés logiques {{cssxref("border-block-start-width")}}, {{cssxref("border-inline-end-width")}} et {{cssxref("border-inline-end-width")}} qui permettent de définir la largeur de la bordure pour les différents côtés de l'élément.
## Syntaxe
```css
/* Valeur de longueur */
/* Type <length> */
border-block-end-width: 5px;
border-block-end-width: thick;
```
### Valeurs
- `<'border-width'>`
- : La largeur utilisée pour la bordure, voir {{cssxref("border-width")}}.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### CSS
```css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exemple {
writing-mode: vertical-lr;
border: 1px solid blue;
border-block-end-width: 5px;
}
```
### HTML
```html
<div>
<p class="exemple">Texte d'exemple</p>
</div>
```
### Résultat
{{EmbedLiveSample("Exemples", 140, 140)}}
## Spécifications
| Spécification | État | Commentaires |
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------ | -------------------- |
| {{SpecName("CSS Logical Properties", "#propdef-border-block-end-width", "border-block-end-width")}} | {{Spec2("CSS Logical Properties")}} | Définition initiale. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.border-block-end-width")}}
## Voir aussi
- Les propriétés physiques correspondantes :
- {{cssxref("border-top-width")}}
- {{cssxref("border-right-width")}}
- {{cssxref("border-bottom-width")}}
- {{cssxref("border-left-width")}}
- {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}}
|