Advertisement
Guest User

Untitled

a guest
May 1st, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. -----HTML-----
  2.  
  3. <div class = "navbar text-center">
  4. <ul>
  5. <li><a href ="index.html">About</a></li>
  6. <li><a href ="skills.html">Skills</a></li>
  7. <li><a href ="contactme.html">Contact Me </a></li>
  8. </ul>
  9. </div>
  10.  
  11.  
  12.  
  13. -----CSS------
  14.  
  15. .navbar{
  16. z-index: 1000;
  17. position: static;
  18. width: 100%;
  19. overflow: hidden;
  20. }
  21. .navbar ul {
  22. list-style-type: none;
  23. margin: 0;
  24. padding: 0;
  25. top: 0;
  26. background-color: #333;
  27.  
  28. }
  29.  
  30. .navbar li {
  31. display: inline;
  32. }
  33.  
  34. .navbar li a {
  35. padding: 1%;
  36. color: #000;
  37. width: 33.333%;
  38. text-decoration: none;
  39. display: inline-block;
  40. float: left;
  41. background-color: white;
  42. color: black;
  43. font-size: 200%;
  44. }
  45.  
  46. .navbar li a:hover{
  47. background-color: #cccccc;
  48. }
  49.  
  50. .navbar .active{
  51. background-color: #4CAF50;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement