Is there a way to accomplish a similar effect to this:
height: calc(100% - 50px);
height: -webkit-calc(100% - 50px);
height: -moz-calc(100% - 50px);
In browsers that do not support these properties?
I have a responsive div with two children. The height of the first child is in pixels, and I want the second child to occupy the remaining space within the parent div. I was able to achieve this using calc(), but it does not work in all browsers. I would prefer not to use JavaScript. Any suggestions on how to address this issue?