Ho anche io alcuni problemi con hover
Con il seguente codice non mi cambia colore al passaggio del mouse...come mai ???
codice:
/* Inizio testi */
.Testi {
font-family :"Verdana";
font-size :10px;
font-style: normal;
font-weight: normal;
color: #000000;
}
.Testi a:link {
font-weight:bold;
text-decoration: none;
color: #004080;
/* il font è ereditato di norma dal padre */
}
.Testi a:visited {
font-weight:bold;
text-decoration: none;
color: #004080;
/* il font è ereditato di norma dal padre */
}
.Testi a:hover
{
text-decoration: underline;
color:#FF8000;
}
/* */