flere forskellige <a> i css ?
Hej.Jeg har en css kode:
a:link, a:visited
{
color: #000000;
text-decoration: none;
}
a:hover
{
color: #CCCCCC;
text-decoration: none;
}
.menu
{
font-size: 15px;
color: #000000;
font-family: verdana;
}
.menu:a:link, a:visited
{
color: #000000;
text-decoration: none;
}
.menu:a:hover
{
color: #000000;
text-decoration: none;
}
osv. osv. osv.
Den vil kun rette sig efter .menu:a:link, a:visited og .menu:a:hover.
Hvad er der galt?
//Mathias
