Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.25 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. div.fejlec{
  5.     width: 100%;
  6.     height: 70px;
  7.     background-color:#999999;
  8.     position: absolute;
  9.     top:0px;
  10.     left:0px;
  11.     z-index:-1;
  12. }
  13. div.menu{
  14. width:100%;
  15. height:40px;
  16. background-color:#888888;
  17. position:absolute;
  18. top:70px;
  19. left:0px;
  20. list-style-type: none;
  21. overflow:hidden;
  22. z-index:3;
  23. }
  24. li{float:left;}
  25. li a{
  26. display: block;
  27. color: white;
  28. text-align: center;
  29. padding-top: 14px;
  30. padding-left: 16px;
  31. text-decoration: none;
  32. }
  33. li a:hover {
  34.     background-color: #111;
  35.     height:40px;
  36. }
  37. div.oldal{
  38.  width: 200px;
  39.     height: 100%;
  40.     background-color:#777777;
  41.     position: absolute;
  42.     top:70px;
  43.     left:0px;
  44.     z-index:0;
  45. }
  46. div.oldal2{
  47. width:200px;
  48. height:100%;
  49. background-color:#777777;
  50. position:absolute;
  51. top:70px;
  52. right:0px;
  53. z-index:0;
  54. }
  55. div.kozep{
  56. width:100%;
  57. height:100%;
  58. position:absolute;
  59. z-index:-1;
  60. top:70px;
  61. background-color:#666666;
  62. }
  63. div.kozep h1{
  64. position:absolute;
  65. font-size:50px;
  66. text-align:center;
  67. left:50%;
  68. }
  69. </style>
  70. </head>
  71. <body>
  72. <div class=fejlec>
  73. </div>
  74. <div class=menu>
  75. <li><a href= "#Nav1">Nav1</a></li>
  76. <li><a href= "#Nav2">Nav2</a></li>
  77. <li><a href= "#Nav3">Nav3</a></li>
  78. <li><a href= "#Nav4">Nav4</a></li>
  79. </div>
  80. <div class=oldal>
  81. </div>
  82. <div class=kozep>
  83. <h1>Teszt</h1>
  84. </div>
  85. <div class=oldal2>
  86. </div>
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement