Reputation: 38352
Does IE8 support filter. Are there any exceptions or i have to use both in the below code
/* For Internet Explorer 5.5 - 7 */
filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#7795c6', endColorstr='#61b145');
/* For Internet Explorer 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#7795c6', endColorstr='#61b145')";
Upvotes: 1
Views: 699
Reputation: 92803
Yes IE8 supports filter
. This:
filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#7795c6', endColorstr='#61b145');
…works in IE8 as well.
Upvotes: 3