I asked a question today that I did not get exactly what I wanted.
Now if I have multiple div tags and one P tag, how do I blur them?
for example :
<div>
<div>
<div>
<div>
<p> text </p>
</div>
</div>
</div>
</div>
styles :
div{
filter:blur(5px);
}
p{
filter:blur(0px)
}
I mean, apply a blur filter to the first div and blur the three divs inside, but do not blur the p tag.
`
– Laaouatni Anas Jun 27 '22 at 14:19