lire

La propriété text-decoration

Ou comment souligner, surligner, barrer du texte

css barre, barre css, css text decoration, text decoration css, css text barre, css souligner texte, souligner texte css, line through css, text decoration line through

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