Experimenting with responsive web design

April 2011

More and more businesses, web apps and designers are offering up multiple versions of their websites depending on the device and resolution the user is using. Last week I did a bit of tweaking to my own website and one of the things I wanted to look at was responsive design.

I simply wanted to offer an iPhone version of the website so iPhone users would see an iPhone friendly view of the website and blog articles, but using the same HTML/CSS and content (i.e. not serving up a separate mobile website).

It’s surprisingly simple.

What is responsive design?

Responsive design allows you to fill in the blanks within devices classes through the application of fluid grids, flexible images, and (where possible) media queries.

Luke Wroblewski

As Luke outlines above, it’s about using up the space that is available, on the device the user is using, most effectively.

So a user using an iPad may be served a different view of the website as to that of a user using an iPhone (or desktop, or netbook or some super duper Nasa sized resolution).

Using CSS media queries

With a CSS media query we can target different screen resolutions with different styles.

Place this in your CSS stylesheet:


@media only screen and (max-width: 480px) {
	/* Mobile styles go here */
	body{width:100%;}
	img{max-width:100%;}
}

The styles above are just examples. Remember to enter your own CSS.

Then place this in your HTML header to ensure the iPhone doesn’t automatically scale down the full page:



Simples.

Things I changed for iPhone/smartphone view:

  1. Max-width of the overall container
  2. Made the grid 1 column
  3. Adjusted the font size for headings
  4. Adjusted navigation positioning
  5. Gave images a max-width
  6. Hid a couple of things that weren't important

And the result:

beforeafter.jpg

Examples of responsive designs in use

Build
build.jpg
Simon Collison
colly.jpg
Lanyrd
lanyrd.jpg
UX London
ux.jpg

Today, anything that’s fixed and unresponsive isn’t web design, it’s something else. If you don’t embrace the inherent fluidity of the web, you’re not a web designer, you’re something else.

Web design is responsive design, Responsive Web Design is web design, done right.

Andy Clarke

Have you made any of your sites responsive?

Let us know below so we can check them out.

Further reading

Receive more design content like this to your inbox

I promise not to spam you. No more than one email per week.

I blog and share links about web design, user experience, product development, HTML/CSS, email design and anything else I find interesting.

No thanks