Skip to content Skip to sidebar Skip to footer

CSS Background Property Can Not Override IE Filter Property?

Hi.. I have a label whose background is gradient by default(IE ). label{ width:100px; height:100px; border:1px solid red; filter:progid:DXImageTransfo

Solution 1:

You can remove it using this:

filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);

Also you can check this fiddle I made here.

And the code your are using for gradients is for Internet Explorer only. If you want code that is compatible for most browsers check this tool here.


Post a Comment for "CSS Background Property Can Not Override IE Filter Property?"