position element at bottom of page code example

Example 1: keep div at the bottom of page

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

Example 2: css bottom

.bottom {
  position: fixed;
  bottom: /*AMOUNT DOWN AFTER IT ADD REM OR % OR PX */;
}

Example 3: html how to move element to the bottom right of page

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Test</title>
<style>
  #foo {
    position: fixed;
    bottom: 0;
    right: 0;
  }
</style>
</head>
<body>
  <div id="foo">Hello World</div>
</body>
</html>

Example 4: force element to bottom of page

footer {
    position: fixed;
    bottom: 0;
}