I have an html that looks like this:
<body>
stuff here that scrolls past the viewport
</body>
<div class="bgimg"> repeated image made with blurred css filter here </div>
and css that looks like this:
.bgimg {
background: url(urlhere.gif);
filter: blur(15px);
-webkit-filter: blur(15px);
background-size: 100% 100%;
background-repeat: repeat;
position: absolute;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: -1;
}
I made a separate background image so i can blur it using css and not have my body blurred out as well.
My problem is when I set the size of the div in my CSS with a repeat function, it only goes as far as the viewport window and does not repeat all the way down to the bottom of my html. Is there a way to make this div as big as the html so when I scroll down I still see my background repeat?