Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] calc not always working in IE Reply To: [Solved] calc not always working in IE

#197103
Mave
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.