• Is it Safari specific? There was a recent bug in iOS 9 (here), the solution to which is adding shrink-to-fit=no to the viewport meta.
  • <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">.
  • Shrink to fit is currently set as no, this is the current tag I have: Viewport is set 'viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no'.
  • For websites that are responsibly responsive, we can add the new viewport meta value, shrink-to-fit=no, to signal this to Safari and disable this default feature.
  • You can override this behavior by adding "shrink-to-fit=no" to your meta tag as shown below. The added value will prevent the page from scaling to fit the...
  • <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">.
  • meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">. on iOS9
  • Safari will automatically zoom/shink the page. 's content to fit automatically, unless shrink-to-fit=no is specified. Note how this paragraph'.
  • ...only the Safari browser shrinking content onload, which had a specific width declared, was fixed by developers adding shrink-to-fit=no to the viewport meta tag.
  • Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!
  • <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">. If I understand correctly, this was done by safari because most of the...
  • Automatically adds viewport meta attribute 'shrink-to-fit=no' to iOS devices with Safari greater than 9.0.
  • Feature (removal) requests. Throwing out the idea to remove the shrink-to-fit=no portion of the view port meta tag.
  • Add shrink-to-fit=no to the viewport meta element, like this: <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">.