elemen tidak pergi ke bagian bawah halaman

body{
  position: relative;
}

#element{
  position: absolute;
  bottom: 0;
}

/*if you don't set the body to position: relative, the element won't go to the
very bottom of the page and won't touch the border of the page*/
Cloudy Caribou