Guest User

Untitled

a guest
Jun 23rd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. #navbar {
  2. margin: 0px;
  3. padding: 0px;
  4. height: 50px;
  5. width: 1000px;
  6. position: absolute;
  7. left: 0px;
  8. top: 100px;
  9. background-color: #000;
  10. color: #FFF;
  11. }
  12. #navbar ul {
  13. margin: 0px;
  14. padding: 0px;
  15. list-style-type: none;
  16. text-align: center;/* centre entire link list */
  17. }
  18. #navbar ul li {
  19. display: inline; /* display each link list item horizontally*/
  20. padding-top: 0px;
  21. padding-right: 0px;
  22. padding-bottom: 0px;
  23. padding-left: 0px;
  24. }
  25. #navbar ul li a {
  26. background-image: url(images/button3.gif);
  27. background-repeat: no-repeat;
  28. text-decoration: none;
  29. text-align: center; /* centre text on each link */
  30. height: 30px;
  31. width: 150px; /*set width of each link "block" */
  32. display: inline-block; /* display full width of each link "block" including the entire background image - keeping them inline*/
  33. margin-right: 10px;
  34. margin-left: 10px;
  35. padding-top: 10px;
  36. margin-top: 5px;
  37. }
  38. #navbar ul li a:hover {
  39. background-image: url(images/button.gif);
  40. background-repeat: no-repeat;
  41. text-decoration: none;
  42. text-align: center;
  43. height: 30px;
  44. width: 150px;
  45. display: inline-block;
  46.  
  47. margin-right: 10px;
  48. margin-left: 10px;
  49. padding-top: 10px;
  50. margin-top: 5px;
Add Comment
Please, Sign In to add comment