Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: None  |  size: 0.50 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Inner Div 100% height outside of parent Div
  2. .outside_div {  
  3.     width:227px;
  4.     height:500px;
  5.  }
  6.  
  7. .scrolabe_div {
  8.     width:100%;
  9.     height:100%;
  10.     overflow:auto;
  11. }
  12.        
  13. .outside_div {
  14.     position: absolute;
  15.     width: 227px;
  16.     height: 500px;
  17. }
  18.  
  19. .scrolabe_div {
  20.     position: absolute;
  21.     width: 100%;
  22.     top: 50px; /* since the top doesn't change, fix it here */
  23.     bottom: 10px; /* set this accordingly, probably 10px */
  24.     overflow: auto;
  25. }
  26.        
  27. .scrolabe_div {
  28.     width:100%;
  29.     overflow:auto;
  30. }