I have 2 elements in my div container.
The first element has an fixed height, example:
element1 {height: 40px;}
What I want to do is to fill the rest of the 100% minus the height of the first element by the second element that is:
element2 {height: 100% - 40px;}
How can I achieve this with only CSS ?