I have a webpage with a background image and some content. My problem is that the image is full screen in the background, but as the content is not a that a page, when I scroll down I see the content without the image.
How may I expand the background image so that it covers the whole content even after the scrolling down?
.backImage {
background: url('./images/panoramiki.jpg');
background-size: 100%;
height: 100%;
position: absolute;
left: 0;
right: 0;
z-index: -1;
filter: blur(5px);
-webkit-filter: blur(5px);
background-position: center;
background-repeat: no-repeat;
background-repeat: repeat;
background-size: cover;
<div class="backImage"> </div>