I have,
HTML,
<div class="outer">
<div class="inner"></div>
</div>
CSS,
.outer {
position: relative;
overflow: scroll;
border : 1px solid red;
height: auto;
}
.inner {
position: absolute;
width: 1200px;
height: 895px;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
border : 1px solid yellow;
}
Issue : - Outer does not take complete height of inner content
Expected : - It should take complete height
Note
I can not hard code outer height
I want a scrollbar on outer.