Scrollable divs without absolute positions - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Absolute Position

Description

Scrollable divs without absolute positions

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
html, body {
   margin:0px;
   overflow:hidden;
   height:100%;
}

#header {<!--   w  ww. j  a  v  a  2s. c  o  m-->
   background-color:Chartreuse;
   height:31px;
}

#left, #right {
   top:31px;
   bottom:0px;
   float:left;
   height:96%;
   overflow:auto;
   width:51%;
}

#left {
   background-color:yellow;
   left:0px;
}

#right {
   background-color:blue;
   right:0px;
}
</style> 
 </head> 
 <body> 
  <div id="header">
    Lorem ip 
  </div> 
  <div id="left"> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
   <p>Lore</p> 
  </div> 
  <div id="right"> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
   <p>Lorem</p> 
  </div>  
 </body>
</html>

Related Tutorials