Advertisement
Guest User

Footer Code

a guest
Jan 22nd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.35 KB | None | 0 0
  1. html {
  2.     height: 100%;
  3.     box-sizing: border-box;
  4. }
  5.  
  6. *,
  7. *:before,
  8. *:after {
  9.     box-sizing: inherit;
  10. }
  11.  
  12. body {
  13.     position: relative;
  14.     margin: 0;
  15.     min-height: 100%;
  16. }
  17.  
  18. #footer {
  19.     position: absolute;
  20.     right: 0;
  21.     bottom: 0;
  22.     left: 0;
  23.     padding: .5rem;
  24.     background-color: #efefef;
  25.     text-align: center
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement