In safari browser my background-image is not working. When I inspected in safari I found there the css3 calc() function is not working. I have used like this
width: calc(100% - 345px);
height: calc(100% - 180px);
Does safari do not support calc() function? If not, how can make a function with jQuery that my calc() function would work.
Edit
I've defined calc() function many times in my stylesheet. So I would like to use jQuery but how do I select the element which value is defined calc()?
Suppose the following div I have applied with css
div.one{width: 300px;}
div.two{width: 300px;}
div.three{width: 200px;}
How can select those divs which width is defined 300px?