--- title: text-decoration-thickness slug: Web/CSS/text-decoration-thickness tags: - CSS - Propriété - Reference translation_of: Web/CSS/text-decoration-thickness ---
La propriété CSS text-decoration-thickness
définit l'épaisseur ou la largeur de la ligne de décoration utilisée sur le texte d'un élément (la ligne qui raye, souligne ou surligne le texte).
/* Un seul mot-clé*/ text-decoration-thickness: auto; text-decoration-thickness: from-font; /* Une valeur de longueur */ text-decoration-thickness: 0.1em; text-decoration-thickness: 3px; /* Valeurs globales */ text-decoration-thickness: inherit; text-decoration-thickness: initial; text-decoration-thickness: unset;
auto
from-font
auto
.<length>
<p class="longhand">Voici du texte avec un soulignement rouge de 2px.</p> <p class="under-and-over">Celui est souligné et surligné.</p> <p class="shorthand">Ce texte sera souligné avec une ligne bleue de 1px si la formulation raccourcie est prise en charge.</p>
.longhand { text-decoration-line: underline; text-decoration-style: solid; text-decoration-color: red; text-decoration-thickness: 2px; } .under-and-over { text-decoration-line: underline overline; text-decoration-style: solid; text-decoration-color: orange; text-decoration-thickness: 0.2rem; } .shorthand { text-decoration: underline solid blue 1px; }
{{EmbedLiveSample('Exemples', '', '', '')}}
Spécification | État | Commentaires |
---|---|---|
{{SpecName('CSS4 Text Decoration', '#text-decoration-width-property', 'text-decoration-width')}} | {{Spec2('CSS4 Text Decoration')}} | Définition initiale. |
Note : Cette propriété était initialement intitulée text-decoration-width
mais fut renommée en 2019 en text-decoration-thickness
.
{{Compat("css.properties.text-decoration-thickness")}}