Guest User

Untitled

a guest
Jan 17th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <body>
  2. <nav>
  3. <button>
  4. <div class="container">
  5. <ul></ul>
  6. </div>
  7. </nav>
  8. </body>
  9.  
  10. nav {
  11. position: relative;
  12. z-index: 4;
  13. }
  14. body.fix-nav nav {
  15. position: fixed;
  16. top: 32px;
  17. }
  18.  
  19. .container {
  20. position: absolute;
  21. z-index: -1;
  22. top: 0px;
  23. right: 0;
  24. overflow: auto;
  25. background: #000;
  26. }
  27.  
  28. .container {
  29. height: calc(100vh - 100px);
  30. }
  31.  
  32. .container {
  33. position: absolute;
  34. top: 100px; /* Высота блока nav */
  35. bottom: 0;
  36. }
Add Comment
Please, Sign In to add comment