--- 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
``` ### CSS ```css /* On applique un style sur le tableau */ table { border-width: 2px; background-color: #52E385; } tr, td { padding: 3px; } /* Des exemples pour border-bottom-style */ .b1 {border-bottom-style:none;} .b2 {border-bottom-style:hidden;} .b3 {border-bottom-style:dotted;} .b4 {border-bottom-style:dashed;} .b5 {border-bottom-style:solid;} .b6 {border-bottom-style:double;} .b7 {border-bottom-style:groove;} .b8 {border-bottom-style:ridge;} .b9 {border-bottom-style:inset;} .b10 {border-bottom-style:outset;} ``` ### Résultat {{EmbedLiveSample('', 300, 200)}} ## Spécifications {{Specifications}} ## Compatibilité des navigateurs {{Compat}} ## Voir aussi - Les autres propriétés liées au style des bordures : - [`border-left-style`](/fr/docs/Web/CSS/border-left-style) - [`border-right-style`](/fr/docs/Web/CSS/border-right-style) - [`border-top-style`](/fr/docs/Web/CSS/border-top-style) - [`border-style`](/fr/docs/Web/CSS/border-style). - Les autres propriétés liées à la bordure basse : - [`border-bottom`](/fr/docs/Web/CSS/border-bottom) - [`border-bottom-color`](/fr/docs/Web/CSS/border-bottom-color) - [`border-bottom-width`](/fr/docs/Web/CSS/border-bottom-width).