--- title: border-left-width slug: Web/CSS/border-left-width tags: - CSS - Propriété - Reference translation_of: Web/CSS/border-left-width --- {{CSSRef}} La propriété **`border-left-width`** définit l'épaisseur de la bordure pour le côté gauche d'un élément. {{EmbedInteractiveExample("pages/css/border-left-width.html")}} ## Syntaxe ```css /* Une valeur de longueur */ /* Type */ border-left-width: 10em; border-left-width: 3vmax; border-left-width: 6px; /* Valeurs avec un mot-clé */ border-left-width: thin; border-left-width: medium; border-left-width: thick; /* Valeurs globales */ border-left-width: inherit; border-left-width: initial; border-left-width: unset; ``` ### Valeurs - `` - : Une valeur de longueur ({{cssxref("<length>")}}) positive ou un mot-clé qui indique l'épaisseur de la bordure pour le côté gauche de la boîte. Si la valeur est un mot-clé, ce doit être l'une des valeurs suivantes : - `thin` (fin) - `medium` (intermédiaire) - `thick` (épais) La spécification ne précise pas de façon exacte l'épaisseur correspondant à chacun de ces mots-clés (c'est donc à chaque implémentation de choisir). La spécification requiert toutefois que l'inégalité suivante soit respectée `thin ≤ medium ≤ thick` et que ces valeurs soient constantes pour un même document`.` ### Syntaxe formelle {{csssyntax}} ## Exemples ### CSS ```css .element1{ border-left-width: thick; border-left-style: solid; border-left-color: red; } .element2{ border-left-width: medium; border-left-style: solid; border-left-color: orange; } .element3{ border-left-width: thin; border-left-style: solid; border-left-color: green; } ``` ### HTML ```html

Une bordure épaisse rouge.

Une bordure moyenne orange.

Et une bordure fine verte.

``` ### Résultat {{EmbedLiveSample("Exemples","200","300")}} ## Spécifications | Spécification | État | Commentaires | | -------------------------------------------------------------------------------------------------------- | ---------------------------------------- | ---------------------------------- | | {{SpecName('CSS3 Backgrounds', '#the-border-width', 'border-left-width')}} | {{Spec2('CSS3 Backgrounds')}} | Pas de modification significative. | | {{SpecName('CSS2.1', 'box.html#border-width-properties', 'border-left-width')}} | {{Spec2('CSS2.1')}} | Pas de modification significative. | | {{SpecName('CSS1', '#border-left-width', 'border-left-width')}} | {{Spec2('CSS1')}} | Définition initiale. | {{cssinfo}} ## Compatibilité des navigateurs {{Compat("css.properties.border-left-width")}} ## Voir aussi - Les autres propriétés liées à la largeur de la bordure : - {{cssxref("border-right-width")}}, - {{cssxref("border-top-width")}}, - {{cssxref("border-bottom-width")}}, - {{cssxref("border-width")}} - Les autres propriétés CSS liées à la bordure du côté gauche : - {{cssxref("border")}}, - {{cssxref("border-left")}}, - {{cssxref("border-left-style")}}, - {{cssxref("border-left-color")}}.