I have this layout I am working on. It strongly depends on CSS calc to do the necessary calculations.
width: -webkit-calc(50% - 20px);
width: -moz-calc(50% - 20px);
width: calc(50% - 20px);
Now, I can't get this to work in Safari. Is there something I'm doing wrong?
And also, is there a way I can introduce a fall-back mechanism for browsers that don't support it? Percentage wont do a good job, since I have to subtract the object in the middle, from the two on the side.
Thanks.
See Question&Answers more detail:os