-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
Description
Not sure if newer version of Safari is supported but when I try the following it doesn't work as intended:
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?