i've used the blur filter effect in a div's background image, but the filter automatically applies to the picture in the front too
.backg {
width: 100%;
height: 300px;
background-image: url("https://cdn.images.express.co.uk/img/dynamic/1/590x/dog-650299.jpg");
background-size: 100%, 100%;
filter: blur(10px);
}
<body>
<div class="backg">
<img src="https://cdn.images.express.co.uk/img/dynamic/1/590x/dog-650299.jpg" height="200px" width="200px">
</div>
</body>
i want the filter only to be only applied in the background