What does the shrink-to-fit viewport meta attribute do?

HtmlSafariWebkitIos9Viewport

Html Problem Overview


I'm having trouble finding documentation for this. 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.

What does this code do?

Html Solutions


Solution 1 - Html

It is Safari specific, at least at time of writing, being introduced in Safari 9.0. From the "What's new in Safari?" documentation for Safari 9.0:

> # Viewport Changes > > Viewport meta tags using "width=device-width" cause the page to scale down to fit content that overflows the viewport bounds. 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 viewport. > > <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">

In short, adding this to the viewport meta tag restores pre-Safari 9.0 behaviour.

Example

Here's a worked visual example which shows the difference upon loading the page in the two configurations.

The red section is the width of the viewport and the blue section is positioned outside the initial viewport (eg left: 100vw). Note how in the first example the page is zoomed to fit when shrink-to-fit=no is omitted (thus showing the out-of-viewport content) and the blue content remains off screen in the latter example.

The code for this example can be found at https://codepen.io/davidjb/pen/ENGqpv.

Without shrink-to-fit specified

Without shrink-to-fit=no

With shrink-to-fit=no

With shrink-to-fit=no

Solution 2 - Html

As stats on iOS usage, indicating that iOS 9.0-9.2.x usage is currently at 0.17%. If these numbers are truly indicative of global use of these versions, then it’s even more likely to be safe to remove shrink-to-fit from your viewport meta tag.

After 9.2.x. IOS remove this tag check on its' browser.

You can check this page https://www.scottohara.me/blog/2018/12/11/shrink-to-fit.html

Solution 3 - Html

This is a tag that can help your page not shrink to fit, which is done by browsers default setting if it is set to "no" just like this: <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=*no*"> then it will over ride the browsers default process to follow yours, i.e. don't shrink to fit.

I hope this clarifies, if not try copying the code in your head tag or emmet with your preferred editor and refresh and load the browser and change resolutions you'll figure out.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Question755View Question on Stackoverflow
Solution 1 - HtmldavidjbView Answer on Stackoverflow
Solution 2 - HtmlGGGinView Answer on Stackoverflow
Solution 3 - HtmlKushal PokhrelView Answer on Stackoverflow