Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> .a { text-decoration: overline; } .b { text-decoration: line-through; } .c { text-decoration: underline; } .d { text-decoration: underline overline; } </style> </head> <body> <h2>Beispiel für die Eigenschaft text-decoration</h2> <p class="a">Lorem Ipsum ist ein Blindtext...</p> <p class="b">Lorem Ipsum ist ein Blindtext...</p> <p class="c">Lorem Ipsum ist ein Blindtext...</p> <p class="d">Lorem Ipsum ist ein Blindtext...</p> </body> </html>