Browsers that do not support CSS3 calc simply ignore an ad that displays an unrecognized value. It will be the same that you never added them to the CSS file.
In your game, the result will be: DEMO
When you use calc , you should always set up backups for browsers that don't support it. So your CSS should look like this:
width: 600px;/*fallback for browsers dont use support calc*/ width: -webkit-calc(100% - 50px); width: -moz-calc(100% - 50px); width: calc(100% - 50px);
laaposto
source share