I need to fill the remaining vertical space of #wrapper under #first with #second div.
#wrapper
#first
#second
I need an only CSS sol
html, body { height: 100%; } .wrapper { display: flex; flex-direction: column; width: 300px; height: 100%; } .first { height: 50px; } .second { flex-grow: 1; }
First Second