Advertisement
ChuyenK

Menu

Jun 29th, 2016
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5.  
  6. #wrapper {
  7.  
  8. width: 900px;
  9.  
  10. margin: 20px auto;
  11.  
  12. }
  13.  
  14.  
  15. #nav ul
  16. {
  17.  
  18. list-style: none;
  19.  
  20. margin-left: 10px;
  21.  
  22. }
  23.  
  24.  
  25. #nav
  26. {
  27.  
  28. background-color: #0F0;
  29.  
  30. height: 30px;
  31.  
  32. width: 100%;
  33.  
  34. }
  35.  
  36. #nav ul li {
  37.  
  38. display: block;
  39.  
  40. float: left;
  41.  
  42. width: 75px;
  43.  
  44. height: 30px;
  45.  
  46. background: #0F0;
  47.  
  48. text-align: center;
  49.  
  50. line-height: 30px;
  51. }
  52.  
  53.  
  54. #nav ul li a {
  55.  
  56. text-decoration: none;
  57.  
  58. color: #FFF;
  59.  
  60. font-weight: bold;
  61.  
  62. font-family: Arial;
  63. }
  64.  
  65. #nav ul li:hover {
  66. background: #F00;
  67. }
  68.  
  69. #nav ul li a:hover {
  70. color: #000;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement