Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <body>
  2. <div class="wrapper">
  3. <header>
  4. header
  5. </header>
  6. <main class="data">
  7. data
  8. </main>
  9. <footer>
  10. footer
  11. </footer>
  12. </div>
  13. </body>
  14.  
  15. html, body {
  16. width: 795px;
  17. height: 100%;
  18. margin: 0 auto;
  19. }
  20.  
  21. .wrapper {
  22. min-height: 100%;
  23. position: relative;
  24. background-color: #d7ffd4;
  25. border: 1px solid gray;
  26. }
  27.  
  28. header {
  29. height: 50px;
  30. width: 100%;
  31. background-color: pink;
  32. }
  33.  
  34. .data {
  35. height: 100%;
  36. background-color: blue;
  37. border: 1px solid black;
  38. }
  39.  
  40. .wrap {
  41. height: 100%;
  42. background-color: #7892ff;
  43. }
  44.  
  45. footer {
  46. width: 795px;
  47. height: 50px;
  48. position: absolute;
  49. bottom: 0;
  50. background-color: yellow;
  51. border: 1px solid green;
  52. }
  53.  
  54. min-height: calc(100vh - 50px);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement