Guest User

Untitled

a guest
Feb 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. .dropdown-content {
  2. display: none;
  3. position: absolute;
  4. background-color: #f9f9f9;
  5. min-width: 160px;
  6. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  7. bottom: 50px;
  8.  
  9. .dropdown:hover .dropdown-content {
  10. display: block;
  11. }
  12.  
  13. .dropdown:hover .dropdown-content {
  14. display: block;
  15. bottom: 100%;
  16. }
  17.  
  18. .dropdown-content {
  19. bottom:100%; <!-- <<<THIS WILL MAKE THE MENU OPEN UP INSTEAD OF OPENING DOWN -->
  20.  
  21. display: none;
  22. position: absolute;
  23. background-color: #f9f9f9;
  24. min-width: 160px;
  25. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  26. }
  27.  
  28. .dropdown-content {
  29. bottom:100%;
  30. display: none;
  31. position: absolute;
  32. background-color: #f9f9f9;
  33.  
  34. min-width: 100%; <!-- <<<THIS WILL MAKE THE POP UP BLOCK AS WIDE AS THE BUTTON -->
  35.  
  36. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  37. }
Add Comment
Please, Sign In to add comment