Please look at this:
What I am trying to achieve is instead of that inner scroll-bar, I want to use the main window scroll bar; So that I can use the windows vertical scroll bar to go through the content inside the innerContent but at the same time I want the outer div ( content and mainContent ) to be fixed.
Is that possible?
CSS
#header {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 50px;
}
#footer {
position: fixed;
left: 0;
bottom:0;
width: 100%;
}
#content {
background-color:#656565;
width: 300px;
margin:0 auto;
padding-top:10px;
border-radius:5px;
}
#mainContent {
margin:0px auto;
background-color:#515151;
width:250px;
border-radius:5px;
padding-top:20px;
}
#contentHolder {
color:#fff;
margin:0 auto;
width:200px;
height: 400px;
background-color:#000000;
border-radius:10px;
overflow:auto;
}
HTML
<div id="header">cfdvfvdfvfv</div>
<div id="content">
<div id="mainContent">
<div id="contentHolder">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam dictum imperdiet lacus in aliquet. Nam leo
risus, bibendum vel varius non, porta vel orci. Integer scelerisque est eu augue tempus lfvdvdfvuctus.
Aliquam erat volutpat. Phasellus vulputate dolor ligula.
</div>
</div>
</div>
<div id="footer"></div>