DEV Community

crbzxy
crbzxy

Posted on

Sass backgroung img issue

I used this code painted all items on body, I need only image on the body background

$fondo: url(/grid/assets/img/backimage.png);

{ padding: 0; margin: 0; } body { ::before{

content:"" ; height: 1008px; width: 100%; display: flex; position: absolute; 
background-image: $fondo ; background-repeat: no-repeat ; background-position: 
center; background-size: cover; filter: blur(1.6rem);

I used this code painted all items on body, I need only image on the body background

$fondo: url(/grid/assets/img/backimage.png);

{ padding: 0; margin: 0; } body { ::before{

content:"" ; height: 1008px; width: 100%; display: flex; position: absolute;
background-image: $fondo ; background-repeat: no-repeat ; background-position:
center; background-size: cover; filter: blur(1.6rem);

}

}

Top comments (0)