JavaScript CSS text-decoration-color Örnek
javascript css text-decoration-color özelliği örnek uygulama
Bu yazının üzeri çizili olarak still atanmıştır. Şimdi ise bu çizginin rengini belirleyen css text-decoration-color özelliğini inceleyelim..
Javascript ile text-decoration-color özelliğine "green" değeri verildiğindeki etkisini görmek için aşağıdaki çalıştır tuşuna basınız !
function fonk() {
document.getElementById("anakutu").style.textDecorationColor = "green";
document.getElementById("anakutu").style.MozTextDecorationColor = "green";
}
document.getElementById("anakutu").style.textDecorationColor = "green";
document.getElementById("anakutu").style.MozTextDecorationColor = "green";
}
JavaScript css text-decoration-color © htmlvecssegitimi.blogspot.com
Yorumlar
Yorum Gönder