Guest User

Untitled

a guest
May 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. html,
  2. body {
  3. margin:0;
  4. padding:0;
  5. height:100%;
  6. }
  7. #container {
  8. min-height:100%;
  9. position:relative;
  10. }
  11. #header {
  12. background:#ff0;
  13. padding:10px;
  14. }
  15. #body {
  16. padding:10px;
  17. padding-bottom:60px; /* Height of the footer */
  18. }
  19. #footer {
  20. position:absolute;
  21. bottom:0;
  22. width:100%;
  23. height:60px; /* Height of the footer */
  24. background:#6cf;
  25. }
  26.  
  27. $(function(){
  28. $('#body').css('padding-bottom', $('#footer').height()+'px');
  29. });
  30.  
  31. <div class="wrapper">
  32. <div class="content"><p>Page Content</p></div>
  33. <div class="footer-push"></div>
  34. </div>
  35.  
  36. <footer>
  37. <p>footer-text</p>
  38. <img src="http://placekitten.com/100/100" alt="footer image">
  39. </footer>
  40.  
  41. // our page element
  42.  
  43. html {
  44. height:100%;
  45. }
  46.  
  47. body {
  48. height:100%;
  49. }
  50. .wrapper {
  51. background:gray;
  52. min-height:100%;
  53. height: auto !important; // the magic!
  54. height:100%;
  55. margin-bottom:-158px; // the height of our footer + margin
  56. }
  57.  
  58. .footer-push {
  59. clear:both;
  60. height:158px; // the height of our footer + margin
  61. }
  62.  
  63. footer {
  64. background:rgba(#a388a3,0.8);
  65. margin-top:20px;
  66. height:138px;
  67. }
  68.  
  69. <body>
  70. <div class="example">
  71. <p>Lorem ipsum dolor sit amet consectetur...</p>
  72. </div>
  73.  
  74. <footer>
  75. <ul>
  76. <li>One</li>
  77. <li>Two</li>
  78. <li>Three</li>
  79. </ul>
  80. </footer>
  81. </body>
  82.  
  83. body {
  84. min-height: 100%;
  85. }
  86.  
  87. footer {
  88. position: absolute;
  89. bottom: 0;
  90. }
Add Comment
Please, Sign In to add comment