Hi,
Was kann der IE7? Die Pseudoklasse :hover auf andere als das a-Element anwenden? Ja das schon, aber darum ging es hier ja nicht.
Ich ging davon aus, dass du darauf anspieltest.
Den Link unterstreichen weder 6er noch 7er.
Interessant, war mir nicht bewusst, dass ältere IE dabei Probleme machen.
Komischerweise offenbar nur bei Links - wenn ich zwei andere Elemente ineinander verschachtele, tritt bei denen das Problem nicht auf.
Lässt sich aber auch fixen, in dem man die Verschachtelung umdreht, und zusätzlich dem Link noch Layout gibt:
span {
color:red;
}
a {
text-decoration:underline;
color:green;
height:1%;
}
a:hover {
color:red;
}
a:hover span {
color:green;
}
<a href="http://example.com"><span>baz<span></a>
MfG ChrisB
--
“Whoever best describes the problem is the person most likely to solve the problem.” [Dan Roam]
“Whoever best describes the problem is the person most likely to solve the problem.” [Dan Roam]