Advertisement
Guest User

Untitled

a guest
May 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. ul {
  2. position: fixed;
  3. top: 0;
  4. width: 100%;
  5. list-style-type: none;
  6. margin: 0;
  7. padding: 0;
  8. overflow: hidden;
  9. background-color: #333;
  10. }
  11.  
  12. li {
  13. float: left;
  14. border-right: 2px solid #bbb;
  15. }
  16.  
  17. li a {
  18. display: block;
  19. color: white;
  20. text-align: center;
  21. padding: 5px 9px;
  22. text-decoration: none;
  23. }
  24.  
  25. li a:hover:not(.active) {
  26. background-color: #111;
  27. color: white;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement