Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
p {
text-decoration-line: underline;
text-decoration-color: #666;
text-decoration-style: wavy;
}
s {
text-decoration-line: line-through;
text-decoration-color: #c91010;
}
</style>
</head>
<body>
<h2>Пример свойства text-decoration-color</h2>
<p>Lorem ipsum<s>это текст-"рыба"</s>...</p>
</body>
</html>