Как заставить SMTH быть в нижней части страницы 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