So I already played a lot with sticky footers, using negative margins technics, flexboxes, grid, and even table technics.
I just discovered the position: sticky;
in MDN and thought "Yay! All that mess is finally gone!".
Damn it, it looks like I can't use position: sticky;
to make a sticky footer, as the behavior I want to achieve is the opposite that's done: I want the footer to be stick at the bottom of the screen when there is not enough content to scroll down, and to be after the content when there is enough of it.
Can that be achieved with position: sticky;
?