I am trying to apply Filter to Only Parent div and skipping this filter for Child div by using the CSS
:not(.class){}
selector as
.main:not(.nofilter) {
-webkit-filter: blur(3px);
}
but as you can see in the demo the Filter is applying for child div .nofilter
too! Can you please let me know how to fix this?
Thanks