questo è quello che ho fatto:
.testo {
font-family: "Times New Roman", "MS Serif", serif;
font-size: 14px;
color: #000066;
letter-spacing: 0.2em;
text-indent: 2pt;
word-spacing: 4px;
}
a.testo:link {
font-family: "Times New Roman", "MS Serif", serif;
font-size: 14px;
font-style: italic;
color: #006699;
letter-spacing: 0.2em;
text-indent: 2pt;
word-spacing: 4px;
text-decoration: none;
}
a.testo:visited {
font-family: "Times New Roman", "MS Serif", serif;
font-size: 14px;
font-style: italic;
color: #666666;
letter-spacing: 0.2em;
text-indent: 2pt;
word-spacing: 4px;
text-decoration: none;
}
a.testo:hover {
font-family: "Times New Roman", "MS Serif", serif;
font-size: 14px;
font-style: italic;
color: #006699;
letter-spacing: 0.2em;
text-indent: 2pt;
word-spacing: 4px;
text-decoration: underline;
}
a.testo:active {
font-family: "Times New Roman", "MS Serif", serif;
font-size: 14px;
font-style: italic;
color: #006699;
letter-spacing: 0.2em;
text-indent: 2pt;
word-spacing: 4px;
text-decoration: underline;
}
il problema è che il testo appare formattato secondo i criteri della class testo. ma invece i link usano le convenzioni normali...(blu, viola, rosso), come se non venissero supportate affatto le pseudo-classi. mi viene il dubbio che debba essere fatto qualcos'altro per permettere che queste funzionino...
franco