--- title: border-bottom-width slug: Web/CSS/border-bottom-width tags: - CSS - Propriété - Reference translation_of: Web/CSS/border-bottom-width ---
La propriété border-bottom-width
définit l'épaisseur de la bordure pour le côté bas d'un élément.
Le code source de cet exemple interactif est disponible dans un dépôt GitHub. Si vous souhaitez contribuez à ces exemples, n'hésitez pas à cloner https://github.com/mdn/interactive-examples et à envoyer une pull request !
/* Une valeur de longueur */ /* Type <length> */ border-bottom-width: 10em; border-bottom-width: 3vmax; border-bottom-width: 6px; /* Valeurs avec un mot-clé */ border-bottom-width: thin; border-bottom-width: medium; border-bottom-width: thick; /* Valeurs globales */ border-bottom-width: inherit; border-bottom-width: initial; border-bottom-width: unset;
<line-width>
thin |
|
Une bordure fine. |
medium |
|
Une bordure moyenne. |
thick |
|
Une bordure épaisse. |
thin ≤ medium ≤ thick
et que ces valeurs soient constantes pour un même document.
.element1{ border-bottom: thick solid red; } .element2{ border-bottom: medium solid orange; } .element3{ border-bottom: thin solid green; }
<p class="element1"> Une bordure épaisse rouge. </p> <p class="element2"> Une bordure moyenne orange. </p> <p class="element3"> Et une bordure fine verte. </p>
{{EmbedLiveSample("Exemples","200","300")}}
Spécification | État | Commentaires |
---|---|---|
{{SpecName('CSS3 Backgrounds', '#the-border-width', 'border-bottom-width')}} | {{Spec2('CSS3 Backgrounds')}} | Pas de modification significative. |
{{SpecName('CSS2.1', 'box.html#border-width-properties', 'border-bottom-width')}} | {{Spec2('CSS2.1')}} | Définition initiale. |
{{SpecName('CSS1', '#border-left-width', 'border-bottom-width')}} | {{Spec2('CSS1')}} | Définition initiale. |
{{cssinfo}}
{{Compat("css.properties.border-bottom-width")}}