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

Responsive Development

Responsive Development

Slides from my talk on responsive development at the Nashville Google Developer Group & Nashville Mobile Development Group.

Colin Lord

April 29, 2014
Tweet

More Decks by Colin Lord

Other Decks in Technology

Transcript

  1. TWO MINUTE CRASH COURSE The Basics Are Simple! h1 {

    color: blue; } @media all and (max-width: 766px) { h1 { color: red; } } MOBILE DESKTOP
  2. USE SASS OR LESS IT STARTS SIMPLE…THEN GETS DAUNTING QUICKLY

    MOBILE FIRST DON’T TRY TO RECYCLE 3 Things To Make It Easier
  3. USE SVG INSTEAD OF JPG OR PNG SVGs look perfect

    on all screens with no extra work
  4. CROSS BROWSER & CROSS DEVICE TESTING Don’t Skip This Step!

    TEST ON REAL DEVICES AS MUCH AS POSSIBLE.
  5. TAKEAWAYS 1 Mobile-first design. Mobile-first development. 2 3 4 Adaptive

    is an easier path than responsive. Use real devices as much as possible. Pick one: responsive or legacy IE. But never both.