Im using PostCSS responsive-type plugin and the generated code I get is as follows:
h1 {
font-size: calc(28px + 20 * ((100vw - 320px) / 880));
}
http://codepen.io/umbriel/pen/WwLBxQ
Works fine in Firefox, Chrome and probably other modern browsers. But safari Version 9.0.3
fails entirely as evidenced in the Codepen I linked.
Does anyone have any ideas why this is?
edit: I may have found the culprit, it seems vw in conjunction with calc is the issue from what I tried. Is there a way of making it work?