Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <style>
  6.  
  7. div.myfixedmenu {
  8. margin-top: -15mm;
  9. height: 12mm;
  10. width: 100%; position: fixed; background: blue }
  11.  
  12. #theContent {margin-top: 20mm}
  13.  
  14. </style>
  15.  
  16. </head>
  17.  
  18. <body>
  19. <div class="myfixedmenu">
  20. theCodeForTheMenu
  21. </div>
  22.  
  23. <div id="theContent">
  24.  
  25. <h1>Greetings</h1>
  26. ....
  27. </div>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement