Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
.a {
text-decoration: overline;
}
.b {
text-decoration: line-through;
}
.c {
text-decoration: underline;
}
.d {
text-decoration: underline overline;
}
</style>
</head>
<body>
<h2>Пример свойства text-decoration</h2>
<p class="a">Lorem Ipsum - это текст-"рыба"...</p>
<p class="b">Lorem Ipsum - это текст-"рыба"...</p>
<p class="c">Lorem Ipsum - это текст-"рыба"...</p>
<p class="d">Lorem Ipsum - это текст-"рыба"...</p>
</body>
</html>