Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.57 KB | None | 0 0
  1. <body>
  2.     <div id="wrapper">
  3.  
  4.         <div id="navigation">
  5.         </div><!--/navigation-->
  6.  
  7.         <div id="content">
  8.         </div><!--/content-->
  9.  
  10.         <!-- whatever other divs you may have, also within the wrapper -->
  11.  
  12.     </div><!--/wrapper-->
  13. </body>
  14.  
  15.  
  16.  
  17. ---------- In the CSS
  18.  
  19. #wrapper {
  20.     position: relative;
  21.     width: 900px; height: 1500px; /* or whatever */
  22. }
  23.  
  24. #navigation {
  25.     width: 60px; height: 100px; /* or whatever */
  26. }
  27.  
  28. #content {
  29.     position: absolute;
  30.     top: 0px;
  31.     right: 0px;
  32.     bottom: 0px;
  33.         left: 10px;
  34.     /* play with these to achieve your desired position */
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement