I have a header and a content div. The header height is fixed and the content div I want to adjust to the windo height, but if its content exceeds the window height therre shall be y-scroll bars for the content div.
HTML
<div class="top"></div>
<div class="bottom">
Lorem ipsum dolor sit amet....
</div>
CSS
.top{
height:100px;
width: 100%;
background-color: grey;
}
.bottom{
min-height:100px;
width: 100%;
overflow-y: scroll;
background-color: red;
}