1. Web Design
  2. UX/UI
  3. Responsive Design

Quick Tip: Don’t Forget the Viewport Meta Tag

Scroll to top
This post is part of a series called Strange and Unusual HTML.
Explaining the “Details” and “Summary” Elements

I remember my maiden voyage into responsive web design; I’d used a classic grid, wrestled with a flexible layout, and tackled media queries for the first time. Stretching and shrinking the browser window resulted in the satisfying sight of my design responding to its surroundings. Then I tested it on a mobile. It didn’t work - I was looking at a shrunken down version of the full-screen design. The solution, as it turned out, was simple..

The Crux

If you read nothing else within this post, take one bit of advice away: use the viewport meta tag in your <head>. In its basic form, it will set you up for cross-device layout peace of mind:

1
<meta name="viewport" content="initial-scale=1">

The Problem

Let’s use an example layout I’ve whipped together. Take a look; you’ll see it shrink and grow as you alter the size of your browser. There’s also a single media query which makes the text larger and gives the heading a bright #ff333e color on wider screens. Lovely.

Here’s how it looks in OSX Chrome:

viewport-chrome-correctviewport-chrome-correctviewport-chrome-correct

And here’s how it appears when the browser window is squished:

viewport-chrome-squishviewport-chrome-squishviewport-chrome-squish

Now let’s see how that looks on a smartphone (in this case iOS Safari on an iPhone 4):

viewport-iphone-incorrectviewport-iphone-incorrectviewport-iphone-incorrect

The first thing you’ll notice is the red heading; a dead giveaway that we’re not looking at the narrow layout that we would expect. We’re actually looking at a zoomed-out version.

iOS Safari assumes a webpage is 980px wide, zooming out in order to fit the whole lot within the available (iPhone 4) 320px. The content is then much less readable, unless you zoom in.


Why?

As they say, assumption is the mother of all… something but that’s exactly what mobile browsers have to do if you don’t specifically instruct them. When you visit a website via a mobile browser it will assume that you’re viewing a big desktop experience and that you want to see all of it, not just the top left corner. It will therefore set the viewport width at (in the case of iOS Safari) 980px, shoe-horning everything into its little display.


The Viewport Meta Tag

Enter the viewport meta tag, introduced by Apple, then adopted and developed further by others.

It looks like this:

1
<meta name="viewport" content="">

Within the content="" you can enter a load of comma delimited values, but we’re going to to focus on the fundamental ones for now.

For example, if your mobile design is purposely laid out at 320px you can specify the viewport width:

1
<meta name="viewport" content="width=320">

For flexible layouts it’s more practical to base your viewport width on the device in question, so to match your layout width to the device width you’d enter:

1
<meta name="viewport" content="width=device-width">

To be extra certain that your layout will be displayed as you intended it you can also set the zoom level. This, for example:

1
<meta name="viewport" content="initial-scale=1">

..will ensure that upon opening, your layout will be displayed properly at 1:1 scale. No zooming will be applied. You could even go further and prevent any zooming by the user:

1
<meta name="viewport" content="maximum-scale=1">
Before applying the maximum-scale parameter, consider whether you should really be preventing your users from zooming in. Can they read everything as well as possible?

“Using the viewport meta tag the wrong way can hinder users with visual problems accessing your website”


Put it All Together

These values together give us a great default to work with:

1
<meta name="viewport" content="width=device-width, initial-scale=1">

Let’s see how it affects our example

viewport-iphone-correctviewport-iphone-correctviewport-iphone-correct

As you can see, everything remains at the correct scale. The text is wrapping instead of shrinking, and our visual helper (the red heading) has disappeared.


But!

Hat tip to Jason for pointing this out in the comments. By stating that the width of your layout is equal to the device width, you’ll run into problems when a device is used in landscape. Take a look at how an iPhone 4 handles our demo, in landscape:

RuinedRuinedRuined
Ruined.

The browser feels obliged to zoom in, in order to match the width of the page.

To get around this, we could, as Jason points out, use JavaScript to conditionally choose which metatag attributes to go with, but the simplest solution seems to be simply to ignore the width altogether. By only setting the initial-scale the width is inferred. This is how our new, simplified demo appears in landscape:

Much betterMuch betterMuch better
Much better.

Not the Standard You’re Looking For

The viewport metatag was Apple’s solution to the problem. It was adopted quickly by other platforms, but it was never put forward by the W3C. Microsoft brought this to light when they chose for IE10 to ignore the viewport metatag under certain circumstances. Instead, they opted to use CSS Device Adaptation, which is what the W3C are leaning on.

In short, similar viewport properties are defined within CSS using the @viewport rule, instead of within the HTML.

1
@viewport{
2
    zoom: 1.0;
3
    width: device-width;
4
}

Or, in accordance to our newer don’t specify device width approach, we could set the following:

1
@viewport{
2
	zoom: 1.0;
3
	width: extend-to-zoom;
4
}

Given that it’s a work in progress, IE10 requires the prefixed version of the proposal, which looks something like this:

1
@-ms-viewport{
2
    width: extend-to-zoom;
3
    zoom: 1.0;
4
}

It’s a far more elegant solution than the metatag, but is a long way from being fully supported. Slot it into your CSS now, to make sure your responsive design behaves itself in IE10 "snap mode", and keep an eye on its progress in the future. This is where viewport control is headed.

You can read more about this in Tim Kadlec’s post IE10 Snap Mode and Responsive Design.


Conclusion

Responsive web design isn’t just for people who enjoy watching their browsers grow and shrink, it’s about catering for as many different devices, screens and resolutions as possible! Throw the viewport meta tag into your <head>, plus the @viewport rule into your CSS when you’re building flexible layouts and you’re good to go.


Further Reading

Ready-Made Solutions

You can also find thousands of high-quality responsive themes and templates on ThemeForest, and a huge range of scripts, plugins and add-ons in the "responsive" category on CodeCanyon. 

Advertisement
Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Web Design tutorials. Never miss out on learning about the next big thing.
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.