blog

Simple sticky footer technique

https://css-tricks.com/a-clever-sticky-footer-technique/

TL;DR:

.parent { height: 100%; }

.parent > footer {
position: sticky;
top: 100vh;
}