lire

La propriété text-decoration

Ou comment souligner, surligner, barrer du texte

css decoration, decoration css, text barre css, css text barre, not provided, text decoration css, css text decoration, barre texte css, css barre texte, text decoration, css texte barre, texte barre css, text decoration overline, text decoration underline, css souligner texte

La propriété text-decoration permet de modifier la "décoration du texte".

Les valeurs pour text-decoration sont :

Exemple en image :

text decoration


Code pour l'image précédente :


<h1 style="text-decoration:underline;text-align:center">Underline</h1>
<h1 style="text-decoration:overline;text-align:center">Overline</h1>
<h1 style="text-decoration:line-through;text-align:center">Line-through</h1>
<h1 style="text-decoration:none;text-align:center">None</h1>

 
 

b1n@sp1n