<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
p {
margin: 1;
color: #ccc;
font-size: 2em;
text-decoration: underline;
text-decoration-skip: edges;
}
</style>
</head>
<body>
<h2>Пример свойства text-decoration-style</h2>
<p><em>Lorem,</em> <em> Ipsum - это текст-"рыба"</em></p>
</body>
</html>