В IE у меня небольшие проблемы с моим 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: -;
}
Фильтр Glow
необходимо исключить на body.transparent a
, как и text-shadow
.Но я просто не могу отключить фильтр для ссылок.Как мне это сделать ??