log / set footer always in bottom

Have been trying to set footer to stay in bottom even the content is not fully fill the screen, found this interesting article CSS: How to fix the footer to the bottom of the page in 2020

TL;DR: use 100vh (viewport)

 body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
Written on 2023-10-27 14:30:00 +0700 Edited on 2024-03-11 04:04:00 +0700