aarongarciah
6/3/2015 - 1:54 PM

Sticky footer html5 (http://ryanfait.com/html5-sticky-footer/)

<html>
  <head>
    <link rel="stylesheet" href="layout.css" />
  </head>
  <body>
    <div class="wrapper">
      <p>Your website content here.</p>
      <div class="push"></div>
    </div>
    <footer>
      <p>Copyright (c) 2008</p>
    </div>
  </body>
</html>
* {
	margin: 0;
}
html, body {
	height: 100%;
}
.wrapper {
	min-height: 100%;
	margin: 0 auto -155px; /* the bottom margin is the negative value of the footer's height */
}
footer, .push {
	height: 155px; /* '.push' must be the same height as 'footer' */
}