I have the following html:
<div class="div1">
<div class="div1a"></div>
<div class="div1b"></div>
<div class="div1c"></div>
</div>
Here a link of layout: http://jsfiddle.net/7ZGaG/5/
I need to give height only to div1.
- div1a and div1b have fixed height. (In fact div1 has also a fixed height)
- div1c needs to expand to the bottom of div1.
For example:
div1: 400px
div1a: 100px
div1b: 100px
div1c: 50px
So there is 150px empty place at the bottom. (400 - 100 - 100 - 50 = 150). How can I solve this with css that div1c has the height to the bottom of div1?
If I do height:100% for div1c, then it takes height of div1, and that is 400px.
Thanks!