Home › Forums › CSS › [Solved] calc not always working in IE › Reply To: [Solved] calc not always working in IE
March 2, 2015 at 9:58 am
#197103
Participant
I fixed it!
Changing
max-height: calc(100% – 60px);
to
height: calc(100% – 60px);
was all it took…
At least it’s solved now.
Thanks to everyone who replied.