<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
.ex1 {
margin: 0;
font-size: 2em;
text-decoration: underline #1c87c9;
text-decoration-skip-ink: none;
}
.ex2 {
margin: 0;
font-size: 2em;
text-decoration: underline #1c87c9;
text-decoration-skip-ink: auto;
}
</style>
</head>
<body>
<h2>Пример свойства text-decoration-skip-ink</h2>
<h3>Text-decoration-skip-ink: none;</h3>
<p class="ex1">Lorem Ipsum - это текст-"рыба"</p>
<h3>Text-decoration-skip-ink:auto;</h3>
<p class="ex2">Lorem Ipsum - это текст-"рыба"</p>
</body>
</html>