JavaScript CSS text-decoration-style Örnek
javascript css text-decoration-style özelliği örnek uygulama
text-decoration-style metnin üzerine çizilecek çizginin tipini ve çeşidini belirtmek için kullanılır..Bu örnekte "double" değeri uygulanmıştır.
Javascript ile text-decoration-style. özelliğine "double" 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.textDecorationStyle = "double";
document.getElementById("anakutu").style.MozTextDecorationStyle = "double";
}
document.getElementById("anakutu").style.textDecorationStyle = "double";
document.getElementById("anakutu").style.MozTextDecorationStyle = "double";
}
JavaScript css text-decoration-style. © htmlvecssegitimi.blogspot.com
Yorumlar
Yorum Gönder