Reader small image

You're reading from  Sass and Compass for Designers

Product typeBook
Published inApr 2013
Reading LevelBeginner
Publisher
ISBN-139781849694544
Edition1st Edition
Languages
Tools
Concepts
Right arrow
Author (1)
Ben Frain
Ben Frain
author image
Ben Frain

Ben Frain has been a web designer/developer since 1996. He is currently employed as a UI-UX Technical Lead at bet365. Before the web, he worked as an underrated (and modest) TV actor and technology journalist, having graduated from Salford University with a degree in Media and Performance. He has written four equally underrated (his opinion) screenplays and still harbors the (fading) belief he might sell one. Outside of work, he enjoys simple pleasures: playing indoor football while his body and wife still allow it and wrestling with his two sons.
Read more about Ben Frain

Right arrow

Media queries in Sass


Before we get into fun and games, it makes sense to understand where Sass can help us with media queries. Media queries can be used for all manner of things: viewport width, viewport height, device width, device height, orientation, viewport aspect ratio, device-aspect ratio, color, color index, monochrome, resolution, scan, and grid. In this instance, I'm concentrating on viewport width, as that's primarily what we use when styling responsive websites.

Note

Want to read the W3C specification for media queries? You can find it at http://www.w3.org/TR/css3-mediaqueries/.

When I started building sites responsively, I was using plain CSS. All the 'normal' styles would be written first and then the media queries would be written at the end of the file. Here is a very simplified example of what I mean:

.style {
  width: 100%;
}

/* All the 'normal' styles...

...

*/
/* First breakpoint */
@media only screen and (min-width: 320px) {
  .styles {
    width: 80%;
  }
}
/* Second...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Sass and Compass for Designers
Published in: Apr 2013Publisher: ISBN-13: 9781849694544

Author (1)

author image
Ben Frain

Ben Frain has been a web designer/developer since 1996. He is currently employed as a UI-UX Technical Lead at bet365. Before the web, he worked as an underrated (and modest) TV actor and technology journalist, having graduated from Salford University with a degree in Media and Performance. He has written four equally underrated (his opinion) screenplays and still harbors the (fading) belief he might sell one. Outside of work, he enjoys simple pleasures: playing indoor football while his body and wife still allow it and wrestling with his two sons.
Read more about Ben Frain