I have a div tag with a background image that has some text text inside, I want to apply a filter to the background image without disrupting the texton the inside of the div layer. Is this possible? (This is my first post I hope I didn't layout anything incorrectly!)
.img_container{
box-sizing: border-box;
background-image: url("https://upload.wikimedia.org/wikipedia/commons/a/a1/Mallard2.jpg");
background-size: contain;
width: 500px;
height: 380px;
filter: blur(2px);
color: #333;
text-align: center;
padding-top: 20%;
font-size: 20px;
}
<div class="img_container">
<div class="img_text"> I want to be clear! </div>
</div>