Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <div class="name">test</div >
  2.  
  3. <div id="menu">
  4. <ul>
  5. <li><a href="index.php?menu=1" border="0" alt="menu1">menu1</a></li>
  6. <li><a href="index.php?menu=1" border="0" alt="menu1">menu2</a></li>
  7. <li><a href="index.php?menu=1" border="0" alt="menu1">menu3</a></li>
  8. <li><a href="index.php?menu=1" border="0" alt="menu1">menu4</a></li>
  9. <li><a href="index.php?menu=1" border="0" alt="menu1">menu5</a></li>
  10.  
  11. </ul>
  12. </div>
  13.  
  14. .name {
  15. font-size: 12pt;
  16. font-weight: bold;
  17. height: 20px;
  18. color: #ffffff ;
  19. Width: 99%;
  20. display: ;
  21. position:fixed;
  22. z-index:2;
  23. padding: 5px;
  24. top: 2px;
  25. }
  26.  
  27.  
  28. #menu {
  29. background: #bbbbbb;
  30. top: 0px;
  31. height: 35px;
  32. width: 99.8% ;
  33. text-align: center ;
  34. position:fixed;
  35. z-index:1;
  36. }
  37.  
  38.  
  39. }
  40.  
  41. #menu ul{
  42. display: ;
  43. height: auto;
  44. padding: 8px 0px;
  45. margin: 0px;
  46. z-index:3;
  47. }
  48.  
  49. #menu li {
  50. display: inline;
  51. z-index:3;
  52. }
  53.  
  54.  
  55.  
  56. #menu a {
  57. display: inline-block;
  58. font-weight: bold;
  59. font-size: 15px;
  60. color: red;
  61. text-decoration: none;
  62. vertical-align: bottom;
  63. padding: 20px;
  64.  
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement