force 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: force element to bottom of page
footer {
position: fixed;
bottom: 0;
}
#footer {
position: fixed;
bottom: 0;
width: 100%;
}
footer {
position: fixed;
bottom: 0;
}