--- 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 */ 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

Une boîte avec une bordure autour. Notez le côté de la boîte qui est rouge.

``` ### 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")}}.