main.css 333 B

123456789101112131415
  1. html {
  2. position: relative;
  3. min-height: 100%;
  4. }
  5. body {
  6. margin-bottom: 60px; /* Margin bottom by footer height */
  7. }
  8. .footer {
  9. position: absolute;
  10. bottom: 0;
  11. width: 100%;
  12. height: 60px; /* Set the fixed height of the footer here */
  13. line-height: 60px; /* Vertically center the text there */
  14. background-color: #f5f5f5;
  15. }