Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> .a { text-decoration: overline; } .b { text-decoration: line-through; } .c { text-decoration: underline; } .d { text-decoration: underline overline; } </style> </head> <body> <h2>Exemple de la propriété text-decoration</h2> <p class="a">Lorem Ipsum est simplement du faux texte...</p> <p class="b">Lorem Ipsum est simplement du faux texte...</p> <p class="c">Lorem Ipsum est simplement du faux texte...</p> <p class="d">Lorem Ipsum est simplement du faux texte...</p> </body> </html>