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
89
90
91
92
93
94
95
96
97
|
---
title: border-block-end-color
slug: Web/CSS/border-block-end-color
tags:
- CSS
- Experimental
- Propriété
- Propriété logique
- Reference
translation_of: Web/CSS/border-block-end-color
---
{{CSSRef}}{{SeeCompatTable}}
La propriété **`border-block-end-color`** définit la couleur de la bordure pour le côté de la fin de l'élément orienté orthogonalement à l'axe de lecture. Elle correspond à une propriété physique selon le mode d'écriture de l'élément, sa directionnalité et l'orientation du texte. Autrement dit, elle correspond à l'une des propriétés {{cssxref("border-top-color")}}, {{cssxref("border-right-color")}}, {{cssxref("border-bottom-color")}} ou {{cssxref("border-left-color")}} selon les valeurs des propriétés {{cssxref("writing-mode")}}, {{cssxref("direction")}} et {{cssxref("text-orientation")}}.
{{EmbedInteractiveExample("pages/css/border-block-end-color.html")}}
Cette propriété est à rapprocher des autres propriétés logiques permettant de définir les couleurs de la bordure d'un élément :
- {{cssxref("border-block-start-color")}},
- {{cssxref("border-inline-end-color")}},
- {{cssxref("border-inline-start-color")}}.
## Syntaxe
```css
border-block-end-color: red;
border-block-end-color: #fffff;
border-block-end-color: rgb(200, 0, 0);
border-block-end-color: unset;
border-block-end-color: initial;
border-block-end-color: inherit;
```
### Valeurs
- `<'border-color'>`
- : La couleur utilisée pour la bordure, voir {{cssxref("border-color")}}.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### CSS
```css
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exemple {
writing-mode: vertical-lr;
border: 10px solid blue;
border-block-end-color: red;
}
```
### 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-color", "border-block-end-color")}} | {{Spec2("CSS Logical Properties")}} | Définition initiale. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.border-block-end-color")}}
## Voir aussi
- Les propriétés physiques correspondantes :
- {{cssxref("border-top-color")}},
- {{cssxref("border-right-color")}},
- {{cssxref("border-bottom-color")}},
- {{cssxref("border-left-color")}}.
- {{cssxref("writing-mode")}}, {{cssxref("direction")}}, {{cssxref("text-orientation")}}
- {{bug("1297097")}}
|