Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</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</h2> <div class="t1">Lorem Ipsum - это текст-"рыба"...</div> <br> <div class="t2">Lorem Ipsum - это текст-"рыба"...</div> <br> <div class="t3">Lorem Ipsum - это текст-"рыба"...</div> <br> <div class="t4">Lorem Ipsum - это текст-"рыба"...</div> </body> </html>