Placing A Scrollable Div Below A Fixed Div Of Variable Height
This is with respect to a mobile page in jquery mobile I have 2 divs as follows within a parent div(data-role=header)
Solution 2:
CSS:
.inner-topHeader-panel {
width: 100%;
height: auto;
margin: 20;
background: white;
border-bottom: none;
float: left;
clear: both;
top: 0;
z-index: 1000;
}
.inner-centercontent {
width: 100%;
float: left;
height: 600px;
overflow: scroll;
padding-bottom: 50px;
}
Will only scroll when height is smaller than inner content.
Post a Comment for "Placing A Scrollable Div Below A Fixed Div Of Variable Height"