Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
p {
text-decoration: underline;
-webkit-text-underline-position: under;
-ms-text-underline-position: under;
text-underline-position: under;
text-decoration-color: #1c87c9;
font-size: 25px;
}
</style>
</head>
<body>
<h2>Пример свойства text-underline-position</h2>
<p>Lorem Ipsum - это текст-"рыба"...</p>
</body>
</html>