Advertisement
harrym12

navbar,css

Jun 29th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. ul {
  2. list-style-type: none;
  3. margin: 0;
  4. padding: 0;
  5. overflow: hidden;
  6. background-color: #333;
  7. position: fixed;
  8. }
  9.  
  10.  
  11.  
  12.  
  13.  
  14. li {
  15. float: left;
  16. }
  17.  
  18.  
  19.  
  20.  
  21. li a, .dropbtn {
  22. display: inline-block;
  23. color: white;
  24. text-align: center;
  25. padding: 14px 16px;
  26. text-decoration: none;
  27. }
  28.  
  29. li a:hover, .dropdown:hover .dropbtn {
  30. background-color: #111;
  31. }
  32.  
  33. li.dropdown {
  34. display: inline-block;
  35. }
  36.  
  37. .dropdown-content {
  38. display: none;
  39. position: absolute;
  40. background-color: #f9f9f9;
  41. min-width: 160px;
  42. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  43. z-index: 1;
  44. }
  45.  
  46. .dropdown-content a {
  47. color: black;
  48. padding: 12px 16px;
  49. text-decoration: none;
  50. display: block;
  51. text-align: left;
  52. }
  53.  
  54. .dropdown-content a:hover {background-color: #f1f1f1;}
  55.  
  56. .dropdown:hover .dropdown-content {
  57. display: block;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement