Tjenare,
jag har följande:
a:link, a:visited, a:hover {
text-decoration: none;
color: #000000;
}
a:visited {
text-decoration: none;
color: #000000;
}
a:hover { border-bottom-style: dotted;
border-bottom-width: thin;
border-bottom-color: #999999;
}
a:active { text-decoration:none;
color:#000000;}
Detta fungerar fint på alla mina länkar i dokumentet men nu har jag några bilder med länkar och jag vill inte att ovanstående a:hover skall appliceras på dem, jag testade:
a:hover IMG { border-bottom-style: none;
}
men det fungerade inte, någon som har tips ?
/Jefman