Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> div.t1 { text-decoration-line: overline underline; text-decoration-style: solid; } div.t2 { text-decoration-line: line-through; text-decoration-style: wavy; } div.t3 { text-decoration-line: overline underline; text-decoration-style: double; } div.t4 { text-decoration-line: overline; text-decoration-style: dashed; } div.t5 { text-decoration-line: line-through; text-decoration-style: dotted; } </style> </head> <body> <h2>Exemple de la propriété text-decoration-style</h2> <div class="t1">Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression.</div> <br> <div class="t2">Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression.</div> <br> <div class="t3">Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression.</div> <br> <div class="t4">Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression.</div> <br> <div class="t5">Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression.</div> </body> </html>