I'm applying the blur filter to the background image of a wrapper div. For some reason, the blur filter also gets applied to the img element within the wrapper div.
#wrapper-5 {
background: url("https://i.picsum.photos/id/1062/600/400.jpg") no-repeat;
filter: blur(5px);
}
#img-5 {
clip-path: circle(30%);
filter: grayscale(80%);
}
<div id="wrapper-5">
<img id="img-5" src="https://i.picsum.photos/id/1062/600/400.jpg" width="600" alt="doggie" />
</div>