Мне нужно заполнить оставшееся вертикальное пространство #wrapper
под #first
с помощью #second
div.
Мне нужно только решение CSS.
HTML:
<div id="wrapper">
<div id="first"></div>
<div id="second"></div>
</div>
CSS:
#wrapper
{
width:300px;
height:100%;
}
#first
{
width:300px;
height:200px;
background-color:#F5DEB3;
}
#second
{
width:300px;
height:100%; //<-----This should fill the remaining space
background-color:#9ACD32;
}