ile text linklediğimde textin renginin değişmemesini nasıl ayarlayabilirim.
color: #000; harici bir yöntem bilen var mı ?
Html link verince rengin sabit kalması |
6 Mesajlar | 1.441 Okunma |
a:hover {
color: initial;
}
a:active {
color: initial;
}
a:visited {
color: initial;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}