How to build standards-compliant responsive design using @viewport

One of the key concepts in any responsive design is the change of viewport size. That’s because mobile viewports vary greatly from desktop viewports. To control the viewport size we traditionally use the viewport meta tag.

However, the viewport meta tag, like all the worst browser developments of the last forever, isn’t W3C valid. It was originally introduced by Apple in Safari and has since been adopted by other browsers. This results in an inconsistent implementation.<!–more>

Happily, the W3C have ridden to our rescue once again by introducing the @viewport CSS rule.

 

Old school

Using the old meta tag approach, this is how we’d tell the browser what size the viewport should seen as:

<meta name='viewport' content='width=device-width'>

 

 

The CSS rule

Quite apart from being invalid, the viewport instruction isn’t data, it’s presentation. So, sticking to our data and presentation separation principles, the viewport instruction needs to be in CSS, not HTML.

The W3C solution in CSS looks like this:

@viewport {
    width: device-width;
}

Or alternately, you can set the viewport with a number, like so:

@viewport {
    width: 640px;
}

You can use the @viewport rule in conjunction with @media queries to force any viewport larger than 960 to shrink to 960px, like so:

@media screen and (min-width: 960px){
    @viewport {
        width: 960px;
    }
}

Additional properties

The @viewport rule also allows us to zoom into a page by default, and even set the maximum zoom:

@viewport {
    width: 960px;
    zoom: 1;
    max-zoom: 3;
}

It is possible to block zooming altogether by setting the user-zoom property to fixed. However zooming, especially on smartphones, is necessary for accessibility and I would recommend using this property.

One more very useful property allows us to lock our web page into landscape or portrait mode:

@viewport {
    orientation: landscape;
}

Browser support

Here’s the bad news: currently this rule is only supported by Internet Explorer 10 and Opera, and requires the -ms- and -o- browser prefixes respectively.

Whilst that is disappointing to say the least, the fact that viewport functionality is already available in most browsers should mean this is a simple rule to pick up. Hopefully we’ll start seeing it introduced in nightly builds very shortly.

Leave a comment

Your email address will not be published.