Pengaturan bentuk-bentuk teks/decoration
Pengaturan bentuk teks menggunakan
properti text-decoration bertujuan untuk mengatur atau menghapus dekorasi dari
teks. Format penulisan CSS untuk mengaturan dekorasi teks adalah sebagai berikut :
selector {text-decoration : nilai
text-decoration }
Nilai dari text-decoration dapat
berupa overline, line-through, underline dan none yang berarti tanpa dekorasi .
Berikut ini adalah contoh penerapan dari style tersebut :
<HTML>
<HEAD>
<TITLE>Format Text </TITLE>
<STYLE
="text/css">
em
{text-decoration : overline}
h2
{text-decoration: line-through}
h3
{text-decoration: underline}
a
{text-decoration: none}
</STYLE>
</HEAD>
<BODY>
<em>Bentuk
Overline</em>
<h2>Header
2, Bentuk Line-through</h2>
<h3>Header
3,Bentuk Underline</h3>
<p><a
href="http://www.bem.akakom.ac.id">
Penggunaan Dalam Link,Nilai
NONE</a></p>
</BODY>
</HTML>