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