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
98
99
100
101
102
103
104
|
---
title: border-left-color
slug: Web/CSS/border-left-color
tags:
- CSS
- Propriété
- Reference
translation_of: Web/CSS/border-left-color
---
{{CSSRef}}
La propriété **`border-left-color`** permet de définir la couleur utilisée pour la bordure gauche d'un élément.
Pour avoir une formulation plus concise, on pourra utiliser les propriétés raccourcies {{cssxref("border-color")}} et/ou {{cssxref("border-left")}}.
{{EmbedInteractiveExample("pages/css/border-left-color.html")}}
## Syntaxe
```css
/* Valeurs de type <color> */
border-left-color: red;
border-left-color: rgb(255, 128, 0);
border-left-color: hsla(100%, 50%, 25%, 0.75);
border-left-color: #ffbb00;
border-left-color: currentColor;
border-left-color: transparent;
/* Valeurs globales */
border-left-color: inherit;
border-left-color: initial;
border-left-color: unset;
```
### Valeurs
- <`color>`
- : Une valeur de couleur (type {{cssxref("<color>")}}) qui décrit la couleur utilisée pour la bordure du côté gauche.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### CSS
```css
.maboite {
border: solid 0.3em gold;
border-left-color: red;
width: auto;
}
.texterouge {
color: red;
}
```
### HTML
```html
<div class="maboite">
<p>Une boîte avec une bordure autour.
Notez le côté de la boîte qui est
<span class="texterouge">rouge</span>.</p>
</div>
```
### Résultat
{{EmbedLiveSample('Exemples')}}
## Spécifications
| Spécification | État | Commentaires |
| -------------------------------------------------------------------------------------------------------- | ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| {{SpecName('CSS3 Backgrounds', '#the-border-color', 'border-color')}} | {{Spec2('CSS3 Backgrounds')}} | Pas de modification significative, la valeur `transparent` a été supprimée car elle fait désormais partie du type {{cssxref("<color>")}} qui a été étendu. |
| {{SpecName('CSS2.1', 'box.html#border-color-properties', 'border-left-color')}} | {{Spec2('CSS2.1')}} | Définition initiale. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.border-left-color")}}
## Voir aussi
- Les propriétés raccourcies liées aux bordures
- {{cssxref("border")}},
- {{cssxref("border-left")}},
- {{cssxref("border-color")}}.
- Les propriétés de couleur pour les autres bordures :
- {{cssxref("border-top-color")}},
- {{cssxref("border-bottom-color")}},
- {{cssxref("border-right-color")}}.
- Les autres propriétés liées à la bordure gauche :
- {{cssxref("border-left-style")}},
- {{cssxref("border-left-width")}}.
|