I want to create a div that has the p tag inside. I want this div to be blurred. And the p tag that is inside should not be applied to the opacity of the div tag
<div>
<p>text</p>
</div>
div{
filter:blur(5px);
}
p{
filter:blur(0px);
}