How to remove filter inheritance from IE IE IE

How to remove the 'filter' attribute for child inheritance for IE8? Therefore, I have a parent account:

filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color='#f69041'); 

This automatically blocks a child that we don’t need.

In the chilled element, I tried:

  position:relative; 

or

  filter:none; 

and other things

No results, at all times, the child inherits the filter style of the parents. How not to inherit for IE8?

thanks for the help

+4
source share
1 answer

Please refer to the answer here from Kyle. In your case, override the filter with:

  filter: progid: DXImageTransform.Microsoft.Shadow (enabled = false); 
0
source

Source: https://habr.com/ru/post/1385700/


All Articles