Sticky CSS Footer

Here's how you should (or can) do a sticky CSS Footer.

Assuming the HTML looks something like this (and everything non footer is inside the "content" div)

<!DOCTYPE html>
<html>
<head>
  <title>Sticky Footer</title>
</head>
<body>
  <div class="content">&nbsp;</div>
  <footer>&copy; 2016</footer>
</body>
</html>

The easiest way to make the footer stick to the bottom would be to use some CSS like

Continue reading →