Skip to content

Instantly share code, notes, and snippets.

@euge
Created May 29, 2010 00:13
Show Gist options
  • Save euge/417909 to your computer and use it in GitHub Desktop.
Save euge/417909 to your computer and use it in GitHub Desktop.
IE8 Opacity
16. Fix opacity on IE8
view source
print?
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Internet Explorer 8 is a bit peculiar when it comes to support CSS opacity. It still doesn’t support the ‘opacity’ property like any other browser, but also breaks support for ‘filter: alpha(opacity=XX)’, which worked fine in IE6 and IE7. To work around this, insert above meta element in the HEAD section of the HTML.
(from http://mir.aculo.us/2010/04/30/build-a-flash-like-game-with-scripty2/)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment