ten un archivo css con el siguiente contenido pero los links de la pagina cuando es visitado la muestra con subrayado y cambia el color sin sentido ¿que puede fallar?
<td class="tex_verde"><a href="1.htm">Presentación</a></td>
-----------------------------
contenido del css
.tex_negro {
FONT-SIZE: 8pt; COLOR: #000000; LINE-HEIGHT: 8pt; FONT-FAMILY: Verdana, Helvetica; LETTER-SPACING: 0px; TEXT-DECORATION: none
}
.tex_negro :hover {
color: #990000;
text-decoration: none;
}
.tex_negro :link {
color: #000000;
text-decoration: none;
}
.tex_negro :active {
color: #000000;
text-decoration: none;
}
.tex_negro :visited {
color: #000000;
text-decoration: none;
}
.tex_verde {
FONT-SIZE: 8pt; COLOR: #008c7b; LINE-HEIGHT: 8pt; FONT-FAMILY: Verdana, Helvetica; LETTER-SPACING: 0px; TEXT-DECORATION: none
}
.tex_verde :hover {
COLOR: #000000;
text-decoration: none;
}
.tex_verde :link {
COLOR: #008c7b;
text-decoration: none;
}
.tex_verde:active {
COLOR: #008c7b;
text-decoration: none;
}
.tex_verde:visited {
COLOR: #008c7b;
text-decoration: none;
}