Guest User

Untitled

a guest
Jun 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <style>
  5.  
  6. <!-- Notice "left" is not declared to allow for centering -->
  7. #content {
  8. position: absolute;
  9. top: 50px;
  10. z-index: 0;
  11. }
  12.  
  13. #flash {
  14. position: relative;
  15. z-index: 1;
  16. }
  17.  
  18. </style>
  19. </head>
  20.  
  21. <body>
  22.  
  23. <!-- Wrap it all in a table for centering (works better than a DIV in this case) -->
  24. <table cellpadding="0" cellspacing="0" align="center" width="995px">
  25. <td align="left">
  26.  
  27. <div id="flash">
  28. <!-- Flash menu with sub-menus that drop over html can go here -->
  29. </div>
  30.  
  31. <div id="content">
  32. <!-- HTML content goes here -->
  33. </div>
  34.  
  35. </td>
  36. </table>
  37.  
  38. </body>
  39. </html>
Add Comment
Please, Sign In to add comment