NJNico Jacobsinfrontendberlin.hashnode.dev·Jul 1, 2021 · 1 min readNested Calc and IE11A while ago, I stumbled upon the weird behavior of IE11 to not accept a CSS calc keyword inside another calc function. For example, this won't work in IE11: .foo { width: calc(100vw - calc(20% - 10px)); } while this would work: .foo { width: c...00