Css text-decoration kodunu çalıştıramama problemi
Merhaba arkadaşlar. Aşağıdaki kodda a tag'i için "text-decoration:none" kullanmam lazım. Mozilla ve chrome için özellikle. "text-decoration" çalışmıyor.
<a href="coksatanurunlerdetaysayfasi.php?coksatanurunlerdetaygit=<?php echo $coksatilanurunler['urun_id']; ?>"><div class="urunincele-butonu">Ürünü İncele</div></a>
css kodları da aşağıda.
.urunincele-butonu {
width:391px;
height:35px;
line-height:35px;
background:#60a3bc;
text-align:center;
font-size:18px;
color:#fff;
text-decoration: none;
}
.urunincele-butonu a:hover {
width:391px;
height:35px;
line-height:35px;
background:#60a3bc;
text-align:center;
font-size:18px;
color:#fff;
text-decoration: none;
}