Advertisement
spica

Untitled

Jul 22nd, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.34 KB | None | 0 0
  1. html {
  2.   position: relative;
  3.   min-height: 100%;
  4. }
  5. body {
  6.   /* Margin bottom by footer height */
  7.   margin-bottom: 60px;
  8. }
  9. .footer {
  10.   position: absolute;
  11.   bottom: 0;
  12.   width: 100%;
  13.   /* Set the fixed height of the footer here */
  14.   height: 60px;
  15.   line-height: 60px; /* Vertically center the text there */
  16.   background-color: #f5f5f5;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement