Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. body,
  5. html {
  6. min-height: 100%;
  7. }
  8. .site-container {
  9. display: flex;
  10. min-height: 100%;
  11. flex-direction: column;
  12. }
  13. .header {
  14. position: sticky;
  15. top: 0;
  16. }
  17. .content {
  18. flex-grow: 1;
  19. }
  20.  
  21. /* not important */
  22. body,
  23. html {
  24. margin: 0;
  25. }
  26. .header,
  27. .content,
  28. .footer {
  29. padding: 10px;
  30. }
  31. .header {
  32. background: #eeeeee;
  33. }
  34.  
  35. .content {
  36. background: #dddddd;
  37. }
  38.  
  39. .footer {
  40. background: #cccccc;
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <div class="site-container">
  46. <div class="header">Header</div>
  47. <div class="content">Content</div>
  48. <div class="footer">Footer</div>
  49. </div>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement