Reputation: 1476
We are building a responsive website based on Rem values. The site works fantastic in Chrome and scales perfectly as expected but when tested on Safari the scaling does not occur. Here is a JSFiddle that replicates the problem. If you resize the width of the browser in chrome the text will resize with it, however on Safari the font-size
remains the same.
It would seem crazy if Safari did not have this functionality. Does anybody have any experience with this and how to solve it?
Thanks
Upvotes: 0
Views: 1311
Reputation: 56754
Safari & iOS Safari (both 6 and 7) does not support viewport units (
vw
,vh
, etc) incalc()
. https://caniuse.com/#search=calc -> check under known issues
Upvotes: 2