CSS text-decoration
Sesuai dengan namanya, property text-decoration digunakan untuk mempercantik text halaman HTML kita.
Cara penulisan
p {text-decoration: overline}
Nilai (value) text-decoration ada 5 macam yaitu:
overline - untuk membuat tulisan dengan dekorasi garis diatasnya
line-through - untuk membuat tulisan dengan dekorasi garis ditengahnya
underline - untuk membuat tulisan dengan dekorasi garis bawah
blink - untuk membuat tulisan berkedip
none - untuk membuat tulisan tanpa dekorasi
Untuk lebih jelasnya kita coba aja yaa
<html>
<head>
<style type="text/css">
h1 {text-decoration: overline}
h2 {text-decoration: line-through}
h3 {text-decoration: underline}
h4 {text-decoration: blink}
a {text-decoration: none}
</style>
</head>
<body>
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<p><a href="http://4gratisfree.blogspot.com/">Sebuah link</a></p>
</body>
</html>
MENGENAL KODE CSS text-decoration
4/
5
Oleh
hudacell