I am trying to create a footer that only appears when the viewer has scrolled to the bottom of the page. This means that if you haven't reached the bottom yet, the footer is not visible. The concept seems simple enough, but as I am still in the learning process, I am feeling unsure.
Here is the code I have written:
footer {
width: 100%;
background-color: #bdbdbd;
bottom: 0;
left: 0;
right: 0;
min-height: 10%;
}
<footer>
<br>
<p style="text-align:center;">
<a href="workform.html" target="_blank">Work with us</a>
</p>
</footer>
Any help or guidance on this matter would be greatly appreciated. Thank you in advance.