css: filters how to disable them for a certain class?
Posted
by
jony
on Stack Overflow
See other posts from Stack Overflow
or by jony
Published on 2011-11-19T17:10:19Z
Indexed on
2011/11/19
17:51 UTC
Read the original article
Hit count: 247
On IE I'm having a bit of trouble with my CSS:
body.transparent {
background-color: transparent;
color:#ffffff;
text-shadow: 0 -1px #000, 1px 0 #000, 0 1px #000, -1px 0 #000;
Filter:Glow(Color=#000000, Strength=1);
}
body.transparent a {
text-shadow: none;
filter: -;)
}
The glow filter needs to be excluded on body.transparent a
, like the shadow is. But I just can't disable the filter for the the links. How do I do this??
© Stack Overflow or respective owner