Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the 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>Text-decoration property example</h2> <div class="t1">Lorem ipsum is simply dummy text...</div> <br> <div class="t2">Lorem ipsum is simply dummy text...</div> <br> <div class="t3">Lorem ipsum is simply dummy text...</div> <br> <div class="t4">Lorem ipsum is simply dummy text...</div> </body> </html>