--- title: border-bottom-style slug: Web/CSS/border-bottom-style translation_of: Web/CSS/border-bottom-style browser-compat: css.properties.border-bottom-style --- {{CSSRef}} La propriété **`border-bottom-style`** définit le style de ligne utilisé pour mettre en forme la bordure en bas d'une boîte. {{EmbedInteractiveExample("pages/css/border-bottom-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-bottom-style: none; border-bottom-style: hidden; border-bottom-style: dotted; border-bottom-style: dashed; border-bottom-style: solid; border-bottom-style: double; border-bottom-style: groove; border-bottom-style: ridge; border-bottom-style: inset; border-bottom-style: outset; /* Valeurs globales */ border-bottom-style: inherit; border-bottom-style: initial; border-bottom-style: revert; border-bottom-style: unset; ``` La propriété `border-bottom-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 |