I have a body tag which has a background image.
the css properties of it is as follows :
body {
background-image: url(image-url);
background-size: cover;
background-repeat: no-repeat;
}
Currently the page is not scrollable.
Let's say that image has height more than 100vh
is there a way to make body extend to the height of the image without there being any content inside the body tag.