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