I have an image for a background of the body on my site and I want to apply a bit of blur, it turns out that when I apply the blur property I blur all the div and my container, but not the body.
body{
background-image: url("ruta");
filter: blur(6px);
}
<body>
<div class="container">
<div class="row">
<div class="col">
<h1>Logo</h1>
</div>
</div>
</div>
I also tried adding with a class in css, but it does not work for me.
.fondo-body{
background-image: url("ruta");
filter: blur(6px);
}
<body class="fondo-body">
<div class="container">
<div class="row">
<div class="col">
<h1>Logo</h1>
</div>
</div>
</div>