--- title: border-left-style slug: Web/CSS/border-left-style translation_of: Web/CSS/border-left-style browser-compat: css.properties.border-left-style --- {{CSSRef}} La propriété **`border-left-style`** définit le style de ligne utilisé pour mettre en forme la bordure sur le côté gauche d'une boîte. {{EmbedInteractiveExample("pages/css/border-left-style.html")}} > **Note :** La spécification ne définit pas la façon dont les bordures de différents styles se rejoignent dans les coins. ## Syntaxe ```css /* Valeurs avec un mot-clé */ border-left-style: none; border-left-style: hidden; border-left-style: dotted; border-left-style: dashed; border-left-style: solid; border-left-style: double; border-left-style: groove; border-left-style: ridge; border-left-style: inset; border-left-style: outset; /* Valeurs globales */ border-left-style: inherit; border-left-style: initial; border-left-style: revert; border-left-style: unset; ``` La propriété `border-left-style` se définit avec l'un des mots-clés utilisés par la propriété [`border-style`](/fr/docs/Web/CSS/border-style). ## Définition formelle {{CSSInfo}} ## Syntaxe formelle {{csssyntax}} ## Exemples ### HTML ```html
none | hidden | petits points | tirets |
solid | double | groove | ridge |
inset | outset |