A sticky footer is a footer that sticks to the bottom of the page regardless of panel size.
Let’s start by making a basic footer:
Set display
to flex and flex-direction
to column, in body. Also, set the margin-top
to auto, in footer:
Now, set the height
in html and min-height
in body to 100%:
The footer is now sticky:
Let’s see if changing the size of the panel and adding more content has any effect on it:
Free Resources