Advertisement
FlugzeugAUT

Untitled

Jun 12th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. #navigation.fixed{
  2. position:fixed;
  3. width:100%;
  4. top:0;
  5. background-color:green;
  6. height:45px;
  7. color:white;
  8. }
  9.  
  10. #navigation{
  11. position:absolute;
  12. background-color:green;
  13. width: 100%;
  14. height: 45px;
  15. color:white;
  16. }
  17.  
  18. #nav-wrapper{
  19. width: 1000px;
  20. margin: 0 auto;
  21. text-align: left;
  22. }
  23.  
  24. #navigation ul{
  25. list-style-type: none;
  26. padding: 0;
  27. margin: 0;
  28. }
  29.  
  30. #navigation ul li{
  31. display: inline-block;
  32. color: green;
  33.  
  34. }
  35.  
  36. #navigation ul li:hover{
  37. background-color: blue;
  38. }
  39.  
  40. #navigation ul li a, visited{
  41. display: block;
  42. text-decoration: none;
  43. }
  44.  
  45. #navigation li{
  46. width: 20%;
  47. text-align:center;
  48. font-size: 20px;
  49. width: 150px;
  50. height: 45px;
  51. background-color:white;
  52. }
  53.  
  54. li{
  55. text-align:center;
  56. }
  57.  
  58. #navigation a{
  59. top: 10px;
  60. color: green;
  61. vertical-align: middle;
  62. }
  63.  
  64.  
  65.  
  66. (HTML)
  67. <div id="navigation">
  68. <div id="nav-wrapper">
  69.  
  70. <ul>
  71. <li><a href="">Startseite</a></li>
  72. <li><a href="">laksdfjlas</a></li>
  73. <li><a href="">lsadkfjask</a></li>
  74. <li><a href="">askldfjasd</a></li>
  75. <li><a href="">askldfjasd</a></li>
  76. </ul>
  77. </div>
  78. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement