Mengatur Warna Teks Dekorasi HTML textDecorationColor Style DOM
Sintak:
- mengembalikan nilai properti textDecorationColor: object.style.textDecorationColor
- mengatur nilai properti textDecorationColor: object.style.textDecorationColor = "color|initial|inherit"
- color: digunakan untuk menentukan warna dari text decoration.
- initial: digunakan untuk mengatur nilai properti textDecorationColor ke nilai default-nya.
- inherit: digunakan untuk menerima nilai turunan properti dari elemen parent.
Return Values: berfungsi untuk mengembalikan sebuah string yang merepresentasikan properti warna text-decoration.
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style
textDecorationColor DOM
</title>
<style>
#mkn1
{text-decoration: underline;}
</style>
</head>
<body>
<center>
<h1
style="color:green;
width:40%;">
Blog Elfan
</h1>
<h2>
Properti Style
textDecorationColor DOM
</h2>
<p id="mkn1">
Merupakan portal ilmu
komputer.
</p>
<button
type="button"
onclick="Bon1s()">
Chanege Decoration
</button>
<script>
function Bon1s()
{
// Mengatur warna underline.
document.getElementById(
"mkn1").style.textDecorationColor =
"magenta";
}
</script>
</center>
</body>
</html>
Blog Elfan
Properti Style textDecorationColor DOM
Merupakan portal ilmu komputer.
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style
textDecorationColor DOM
</title>
<style>
#hoho1
{text-decoration: underline;}
</style>
</head>
<body>
<center>
<h1
style="color:green;
width:40%;">
Blog Elfan
</h1>
<h2>
Properti
StylestextDecorationColor DOM
</h2>
<p id="hoho1">
Merupakan portal ilmu komputer
</p>
<button
type="button"
onclick="Bon1s()">
Chanege Decoration
</button>
<script>
function Bon1s()
{
// Pengaturan warna teks
// dokorasi.
document.getElementById(
"hoho1").style.textDecorationColor =
"green";
}
</script>
</center>
</body>
</html>
Blog Elfan
Properti StylestextDecorationColor DOM
Merupakan portal ilmu komputer
- 7 Value Properti textShadow Style DOM pada HTML
- 6 Value Properti textTransform Style DOM pada HTML
- 5 Value Properti Top Style DOM pada HTML
- 25 Value Properti Transform Style DOM pada HTML
- 5 Value Properti transformOrigin Style DOM pada HTML
- 4 Value Properti transformStyle DOM pada HTML
- 6 Value Properti Style Transition DOM pada HTML
5 komentar untuk "Mengatur Warna Teks Dekorasi HTML textDecorationColor Style DOM"
Hubungi admin melalui Wa : +62-896-2414-6106
Respon komentar 7 x 24 jam, mohon bersabar jika komentar tidak langsung dipublikasi atau mendapatkan balasan secara langsung.
Bantu admin meningkatkan kualitas blog dengan melaporkan berbagai permasalahan seperti typo, link bermasalah, dan lain sebagainya melalui kolom komentar.
- Ikatlah Ilmu dengan Memostingkannya -
- Big things start from small things -
Jenis browser seperti apa saja yang dapat digunakan untuk mengaktifkan properti textDecorationColor Style DOM pada HTML?
BalasHapusBerikut adalah beberapa jenis browser yang dapat digunakan untuk mengaktifkan properti textDecorationColor Style DOM pada HTML:
Hapusa) Google Chrome 57.0
b) Firefox 36.0
c) Opera 44.0
d) Apple Safari 7.1
Apa yang dimaksud dengan properti textDecorationColor Style DOM pada HTML?
BalasHapusProperti textDecorationColor Style DOM pada HTML merupakan properti yang digunakan untuk menentukan warna dekorasi pada teks seperti garis bawah, garis luar, dan garis batas.
HapusProperti textDecorationColor Style DOM pada HTML merupakan properti yang hanya akan berpengaruh pada elemen dengan dekorasi teks yang bernilai visible atau terlihat.
Hapus