+ 1
What is the simplest way to make an HTML footer âstickyâ?
My aim is to have an HTML footer that sticks to the bottom (on a series of existing web pages). I am looking for a simple solution that doesn't require changing much code. Do you have experience with this issue or an idea? Thanks for your help!
2 Answers
+ 3
Does setting css
position: sticky;
bottom: 0;
for your footer does what you want? https://www.w3schools.com/css/css_positioning.asp
0
Perfect, thank you!