MyBB Community Forums

Full Version: make IE recognize text shadow and transition?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, anyone knows how can i make Internet Explorer to see the effects of text shadow and transition?

right now im using this code:

a:link {
  -webkit-transition:color 200ms ease-in;
  color:#F6B620;
  text-decoration:none;
  text-shadow:#C51C0A 0 0 5px;
  -moz-transition:color 200ms ease-in;
}

works on chrome and firefox, but on IE not works hehe
Moved, this is not related to MyBB.

Which IE version do you use? The latest version(s) should support it.
i have IE 9, but not works
http://css3pie.com/ or https://developers.google.com/chrome/chrome-frame/

http://caniuse.com/ will tell you which features which browser version support out of the box.Wink
For IE9 (and below) you'll have to use filter(s) (or js plugins / functions) for text-shadow.

Try with this one.
 filter: glow(color=#C51C0A,strength=5); /* IE */
The latest is IE10.

Transitions are basically a shot to the arses of Internet Explorer.

Using some obnoxious dx alpha filters, you can accomplish this, if you are not adept with jQuery.
i installed IE 10 right now and seems that the shadows works, but transition no :
Transitions for IE are PITA. I couldn't get them to work. Just do for Mozilla and Chrome, leave IE.