CSS calc not working in Safari and fallback
The way I solved this problem, is introducing a pure CSS fall-back, that older browsers that don’t support CSS calc would only read. figure.left { width: 48%; width: -webkit-calc(50% – 20px); width: -moz-calc(50% – 20px); width: calc(50% – 20px); } The left and right panels, get a width of 48% if the browser cannot read … Read more