make a div at bottom of page code example
Example 1: keep div at the bottom of page
#footer {
position: fixed;
bottom: 0;
width: 100%;
}
Example 2: how to make element stick to bottom
.fotter{
position: fixed;
bottom: 0px;
}
#footer {
position: fixed;
bottom: 0;
width: 100%;
}
.fotter{
position: fixed;
bottom: 0px;
}