Advertisement
lalatino

Vertical layout with middle box scrollable position:absolute

Apr 23rd, 2013
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title> http://stackoverflow.com/questions/16168449/vertical-layout-with-middle-box-scrollable-not-positionabsolute </title>
  5.  
  6. <style type="text/css">
  7.  
  8. html,body {
  9.   height: 100%;
  10.   width: 100%;
  11.   overflow:hidden;
  12.   background-color:#fcc;
  13. }
  14.  
  15. div {
  16.   border:1px solid blue;
  17. }
  18.  
  19. .content {
  20.   position:relative;
  21.   height: 90%;
  22.   width: 90%;
  23.   background-color:#ccf;
  24.   border:10px solid red;
  25. }
  26.  
  27. #header{
  28.   background-color:#770;
  29.   height:4em;
  30.   overflow: hidden;
  31.   position:absolute;
  32. }
  33.  
  34. #main{
  35.   background-color:#077;
  36.   top:4em;
  37.   bottom:4em;
  38.   overflow-y: scroll;
  39.   width:100%;
  40.   position:absolute;
  41. }
  42.  
  43. #footer{
  44.   background-color:#707;
  45.   height:4em;
  46.   overflow: hidden;
  47.   bottom:0;
  48.   position:absolute;
  49. }
  50.  
  51. </style>
  52.  
  53. <script>
  54. window.onload = function(){
  55.   var s = '';
  56.   for (var i=0; i<100; i++) { s+= 'test '; }
  57.  document.getElementById('header').innerHTML = s;
  58.  document.getElementById('footer').innerHTML = s;
  59.  for (var i=0; i<3000; i++) { s+= 'test '; }
  60.  document.getElementById('main').innerHTML = s;
  61. }
  62. </script>
  63.  
  64. </head>
  65. <body>
  66.   <div class="content">
  67.     <div class="row" id="header">test
  68.     </div>
  69.     <div class="row">
  70.       <div class="tresc" id="main">test
  71.       </div>
  72.     </div>
  73.     <div class="row" id="footer">test
  74.     </div>
  75.    
  76.   </div>
  77.  
  78. </body>
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement