When I position my footer to the bottom of the page it postions in the middle of the page
When is set the element to position absolute and the bottom attribute equal to zero it show up in the middle of the whole page instead of the bottom. Is this because my page is bigger than one screen and if so how do I solve this?
#footer{
height: 24.72vh;
background-color: aqua;
overflow: visible;
position: absolute;
bottom: 0;
}