I am looking to organize multiple icons within a container that spans the entire height of the website, rather than just the viewport.
Currently, I am only able to achieve the height of the viewport using the following code:
.full-container {
position: absolute;
height: 100%;
display: block;
top: 0;
bottom: 0;
/* for example */
width: 100%;
background: red;
}
<div class="full-container"></div>
Is there a method to obtain the height of the entire website?
Shown below is an example of my concept:
https://i.sstatic.net/aAk33.jpg
The white area represents what is visible on the screen in the browser. The grey area represents the remainder of the site. I aim to create a DIV that covers the full height of the page (depicted in yellow).