Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <style>
  2. html {
  3. height: 100%;
  4. }
  5. html body {
  6. height: 100%;
  7. overflow: hidden;
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. html body .container-fluid.body-content {
  12. flex:1;
  13. width: 100%;
  14. overflow-y: auto;
  15. }
  16. header {
  17. background-color: #4C4;
  18. min-height: 50px;
  19. width: 100%;
  20. }
  21. footer {
  22. background-color: #4C4;
  23. min-height: 30px;
  24. width: 100%;
  25. }
  26.  
  27. </style>
  28. <html>
  29.  
  30. <body>
  31. <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"/>
  32. <header>a</header>
  33. <div class="container-fluid body-content">
  34.  
  35. </div>
  36. <footer>b</footer>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement