I'm getting issue to get my footer at bottom of page in all cases, or it's disappearing when scrolling up or down, or it's just showing at the top of the page... Tried to find out on here but impossible for me to get it..
I do apologize if this post is a duplicate from an existing one..
body {
display: flex;
flex-direction: column;
}
footer {
background-color: rgba(255, 255, 255, 0.9);
height: 25px;
order: 4;
border-top: 1px black solid;
margin-top: auto;
text-align: center;
}
<footer>
<span>Text of my footer</span>
</footer>
Not sure if Grid might help on such situation and make life easier?
And thank you for any answer! :) Rgds, Erick