Como fazer o SMTH estar no fundo da página CSS
#footer {
position: fixed; // position: absolute; is also okay
bottom: 0; // this is how far the element stays from the bottom of the page
}
Lala Talishinskaya