i have two div
<div id="uno">
text
</div>
<div id="due">
text
</div>
div#uno{
width:300px;
height: 100px;
border: 1px solid blue;
overflow:hidden;
}
div#due{
width:300px;
height: 200px;
border: 1px solid yellow;
overflow:scroll;
}
how can i have the height of the div id="due" equal to the remaining height of the page?