Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Responsive Web Design is NOT a Buzz Word

Nima Izadi
December 10, 2012

Responsive Web Design is NOT a Buzz Word

Because too many people think it is...

Link to video [FR] : https://vimeo.com/56921998

Nima Izadi

December 10, 2012
Tweet

More Decks by Nima Izadi

Other Decks in Programming

Transcript

  1. R e s p o n s i v e

    Web Design A BUZZ Word IS NOT
  2. Responsive Web Design ? “Responsive web design [...] is an

    approach to web design in which a site is crafted to provide an optimal viewing experience—easy reading and navigation with a minimum of resizing, panning, and scrolling—across a wide range of devices (from desktop computer monitors to mobile phones) Wikipedia
  3. Media Queries “A media query consists of a media type

    and at least one expression that limits the style sheets' scope by using media features, such as width, height, and color. Added in CSS3, media queries let the presentation of content be tailored to a specific range of output devices without having to change the content itself. Mozilla Developer Network
  4. Media Queries & SASS @mixin iphone { @media only screen

    and (max-width: 480px) { @content; } } @include iphone { body { color: red } }