Say I've got the following setup:
<div class="A parent">
<div class="A a1"></div>
<div class="A a2"></div>
<div class="A a3"></div>
</div>
CSS:
.A {
width: 100%;
}
.parent {
height: 300px;
width: 300px
}
.a1 {
height: 100px;
}
.a2 {
height: 100px;
}
.a3 {
// ??
}
Is there any way I can get .a3
to fill out the remaining height of the parent div, without any content and without explicitly stating its height? This would be so useful for responsive design.