keep scrollbar at the bottom code example
Example 1: css make something always on top
element {
position: fixed;
z-index: 999;
}
Example 2: keep div at the bottom of page
#footer {
position: fixed;
bottom: 0;
width: 100%;
}
element {
position: fixed;
z-index: 999;
}
#footer {
position: fixed;
bottom: 0;
width: 100%;
}