Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <div class="header">
  2. <div id="menu">menu</div>
  3. <div id="search"></div>
  4. <div id="tab">tab</div>
  5. </div>
  6.  
  7. #header {
  8. position: relative;
  9. }
  10.  
  11. #menu {
  12. position: absolute;
  13. bottom: 0;
  14. top: 0;
  15. width: 20%;
  16. right: 80%;
  17. background: green;
  18. }
  19.  
  20. #tab {
  21. position: absolute;
  22. overflow: auto;
  23. right: 0;
  24. z-index: 10;
  25. padding: 1.2rem;
  26. left: 20%;
  27. background: red;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement