Is there any possible way to make text not blur (not changing the html code) I want to make only background blurry and text not blurry.
My code looks like this
.background {
height: 400px;
background-image: url(photo);
background-repeat: no-repeat;
background-size: 100%;
background-position: center;
filter: blur(1px);
}
<div class="background">
<a href="https://stackoverflow.com" id="something">Home</a>
</div>