I was wondering what I would need to do with the div#blocker in this code to recover the ability to have overflow in "innermost" be handled with scrolling: https://jsfiddle.net/39q78tdm/ .
* {
box-sizing: border-box;
}
main {
background: pink;
height: 400px;
border: solid;
overflow: hidden;
}
container {
background: yellow;
}
#wrapper {
height: 100%;
overflow: scroll;
}
#inner {
background: aqua;
height: 800px;
}
<main>
<div id="blocker">
<container>
<header>header in container</header>
<div id="wrapper">
<div id="inner">
innermost
</div>
</div>
</container>
</div>
</main>