Reputation: 7941
I would like to use the Matrix filter, however it does not work at all in IE9, unlike in IE8. Was the filter idea deprecated with the new version? Is here any way to get it working? Thanks
Upvotes: 3
Views: 1014
Reputation: 1683
If I remember correctly, they have removed filters in IE9 standard mode in favor of CSS3 styles. Try forcing IE8 mode with the following meta-tag or an equivalent HTTP header:
<meta http-equiv="X-UA-Compatible" content="IE=8" />
Upvotes: 1
Reputation: 186662
Are you using the new -ms-filter
syntax?
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=50)";
And could you provide your current code?
Upvotes: 2