<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
div.t1 {
-webkit-text-decoration-line: none; /* Safari */
text-decoration-line: none;
}
div.t2 {
-webkit-text-decoration-line: underline; /* Safari */
text-decoration-line: underline;
}
div.t3 {
-webkit-text-decoration-line: line-through; /* Safari */
text-decoration-line: line-through;
}
div.t4 {
-webkit-text-decoration-line: overline; /* Safari */
text-decoration-line: overline;
}
</style>
</head>
<body>
<h2>Пример свойства text-decoration-line</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>