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, text decoration barre, line through css, text decoration line through, css line through

Date de publication : 2008-12-17

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