I need relative positioned div inside of fixed parent.
I have a website where everything is relative exept fixed popup window which opens on a button click. This popup window should be 100% width and 100% height, so it covers whole page.
Inside popup window I want fixed div on left side which is 60% width, and relative div on right side (40% width, auto height) which is available to scroll.
In fact, it's hard to explain so I made the fiddle. In this example, I want to scroll orange div instead of scrolling blue div. Is it possible to change scrollbar focus?
<div id='container'> <div id='inside-fixed-div'> <div id='left-fixed-container'></div> <div id='right-relative-container'> </div> </div> </div> 