Although it may seem like a repetitive question, the answers I have come across are quite unbelievable. Why would multiple lines of code be needed for such a simple task? It just doesn't make sense.
I specifically want to ensure that the img
is located at the very end of the page, not just at the bottom of the displayed screen - as I am currently experiencing this issue.
Here is the code that I'm using now:
#footerimg {
position: absolute;
right: 0px;
bottom: 0px;
z-index:-2;
}
I am looking for a solution where the image will only become visible once I scroll to the very bottom of the page.
It's baffling to think that there isn't a CSS option like bottom-page:0px
.