how to stick a division at the bottom of the page code example
Example 1: push footer to bottom
.flex-wrapper {
display: flex;
min-height: 100vh;
flex-direction: column;
justify-content: space-between
}
Example 2: how to make element stick to bottom
.fotter{
position: fixed;
bottom: 0px;
}