Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</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>Beispiel für die Eigenschaft text-decoration</h2> <div class="t1">Lorem Ipsum ist ein Blindtext...</div> <br> <div class="t2">Lorem Ipsum ist ein Blindtext...</div> <br> <div class="t3">Lorem Ipsum ist ein Blindtext...</div> <br> <div class="t4">Lorem Ipsum ist ein Blindtext...</div> </body> </html>