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
source share