Advertisement
Guest User

Untitled

a guest
Jan 25th, 2012
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset=utf-8 />
  5. <title>JS Bin</title>
  6. <!--[if IE]>
  7.  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  8. <![endif]-->
  9. <style>
  10. body,html { width: 100%; height: 100%; margin: 0; }
  11.  
  12. #main { width: 100%; height: 100%; background: red; position: relative; }
  13. #top {
  14.     height: 100px;
  15.     width: 100%;
  16.     background: yellow;
  17.     position: absolute;
  18.     top: 0;
  19.     left: 0;
  20.     z-index: 2;
  21. }
  22. #bottom {
  23.     width: 100%;
  24.     height: 50px;
  25.     background: #ccc;
  26.     position: absolute;
  27.     bottom: 0;
  28.     left: 0;
  29.     z-index: 2;
  30. }
  31.  
  32. #middle {
  33.     z-index: 1;
  34.     height: 100%;
  35.     padding-top: 100px;
  36.     padding-bottom: 50px;
  37.     position: absolute;
  38.     top: 0;
  39.     left: 0;
  40.     background: black;
  41.     width: 100%;
  42.     box-sizing: border-box;
  43.     -moz-box-sizing: border-box;
  44.     -webkit-box-sizing: border-box;
  45. }
  46.  
  47. #content_holder {
  48.     position: relative;
  49.     height: 100%;
  50. }
  51.  
  52. #menu {
  53.     background: aqua;
  54.     width: 120px;
  55.     height: 100%;
  56.     position: absolute;
  57. }
  58. #content {
  59.     display: inline-block;
  60.     background: white;
  61.     width: 100%;
  62.     box-sizing: border-box;
  63.     -moz-box-sizing: border-box;
  64.     -webkit-box-sizing: border-box;
  65.     padding-left: 120px;
  66.     height: 100%;
  67. }
  68.  
  69. </style>
  70. </head>
  71. <body>
  72.     <div id="main">
  73.     <div id="top"></div>
  74.     <div id="middle">
  75.         <div id="content_holder">
  76.             <div id="menu">aaa</div>
  77.             <div id="content">bbb</div>
  78.         </div>
  79.     </div>
  80.     <div id="bottom"></div>
  81.     </div>
  82. </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement