tutorial pengembangan web terbaru
 

Style textDecorationColor Property

<Style Object

Contoh

Mengubah warna garis, dalam sebuah teks yang digarisbawahi:

document.getElementById("myP").style.textDecorationColor = "red";
Cobalah sendiri "

Definisi dan Penggunaan

Properti textDecorationColor menentukan warna text-decoration (underlines, overlines, linethroughs) .

Catatan: Properti textDecorationColor hanya akan memiliki efek pada elemen dengan text-decoration terlihat.


Dukungan Browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Properti textDecorationColor tidak didukung dalam salah satu browser utama.

Firefox mendukung alternatif, properti MozTextDecorationColor.


Sintaksis

Kembali properti textDecorationColor:

object .style.textDecorationColor

Mengatur properti textDecorationColor:

object .style.textDecorationColor=" Nilai properti
Nilai Deskripsi
color Menentukan warna text-decoration
initial Set properti ini ke nilai default. Baca tentang awal
inherit Mewarisi properti ini dari elemen induknya. Baca tentang mewarisi

Rincian teknis

Nilai default: currentcolor
Kembali Nilai: Sebuah String, yang mewakili properti text-decoration-warna elemen
CSS Versi CSS3

Pages terkait

Referensi CSS: text-decoration-color property


<Style Object