SlideShare a Scribd company logo
1 of 57
Download to read offline
Responsive Web Design
Ben MacNeill
ben.macneill@extension.org

Twitter:
@chillnc

Presentation at:
slideshare.net/chillnc/

Demo files:
extension.org/share/netc/rwd/
This presentation pulls from this excellent book:


Responsive Web Design
       by Ethan Marcotte
What is Responsive
  Web Design?
Flexible, Device-
Independent Design
Single Source
 of Content
Why Responsive Design?


• Designing for specific devices — too many
• Siloed pages: /mobile/page.html	
  — trapped
Three Components

• A flexible grid-based layout
• Flexible images and media
• Media queries (CSS3)
The Grid




     http://grids.heroku.com/
960px page, 60px column, 12 wide with 20px gutter
960px page

940px

620px                 300px

 600px                 280px
Traditional Fixed Grid
#page	
  {
	
   margin:	
  36px	
  auto;
	
   width:	
  960px;
}
Flexible Grid
#page	
  {
	
   margin:	
  36px	
  auto;
	
   width:	
  90%;
}


(90% is somewhat arbitrary)
960px page

940px

620px                     300px

 600px                     280px

 How does 940px
 translate to a flexible width?
 It depends on its container.
Pixels to Percentages

target	
  ÷	
  context	
  =	
  result


#title         #page
 940px         960px           %
940px	
  ÷	
  960px	
  =	
  0.979166666666667



        97.9166666666667%



      target	
  ÷	
  context	
  =	
  result
#page	
  {
	
   margin:	
  36px	
  auto;
	
   width:	
  90%;
}
#title	
  {
	
   width:	
  97.9166666666667%;
	
   //	
  940px	
  ÷	
  960px
}
960px page

 940px

 620px                               300px

   600px                              280px


620px	
  ÷	
  960px	
  =	
  0.645833333333333
300px	
  ÷	
  960px	
  =	
  0.3125
600px	
  ÷	
  620px	
  =	
  0.967741935483871
280px	
  ÷	
  300px	
  =	
  0.933333333333333
End Result: Fluid Grid
Fluid to
a Fault
 (we'll come
 back to this
  problem)
We also need
  Fluid Typography
 body	
  {font-­‐size:	
  100%}


    24px	
  ÷	
  16px	
  =	
  1.5em
  h1	
  {font-­‐size:	
  1.5em}


target	
  ÷	
  context	
  =	
  result
Three Components

• A flexible grid-based layout
• Flexible images and media
• Media queries (CSS3)
Flexible Images
Basic Markup
.image	
  {
  float:	
  right;
  margin-­‐bottom:	
  0.5em;
  margin-­‐left:	
  01.6666666666667%;
  /*	
  10px	
  ÷	
  600px	
  */
  width:	
  50%;	
  /*	
  300px	
  ÷	
  600px	
  */
}


<p	
  class="image">
 <img	
  src="turtle.jpg"	
  />
</p>
img	
  {max-­‐width:	
  100%;}
Flexible
Caveats

• max-width doesn't work in IE6
• Image scaling hiccups in IE7 & FF2
We don’t care
 about IE6.
Is it okay to stop
         caring about IE7?
• IE7 user base (2.3% - 3.5% May 2012)
• Google stopped supporting in Aug 2011
• Facebook began phasing out support in Dec 2011
• Microsoft is discontinuing support in July 2013
• Flexible images work, just somewhat degraded
Three Components

• A flexible grid-based layout
• Flexible images and media
• Media queries (CSS3)
In the Beginning...
               Media Types
<link	
  rel="stylesheet"	
  href="main.css"	
  media="screen"	
  />
<link	
  rel="stylesheet"	
  href="paper.css"	
  media="print"	
  />
<link	
  rel="stylesheet"	
  href="tiny.css"	
  media="handheld"/>



    • Early phones had poor browsers
    • Media Types proved too broad
Media Query
@media	
  screen	
  and	
  (min-­‐width:	
  1024px)	
  {
  body	
  {font-­‐size:	
  100%;}
}

  • Contains two components:
     media type and (query)

  • The query contains a feature and a value
  • Can be placed right in your stylesheet
Short Detour:
Reseting the Viewport
• Modern mobile browsers pretend that web
  pages are desktop-browser size (~900px)
• They render them at that size
• Then shrink the resulting page to fit in the
  device window
Override the Default
    	
  <meta	
  name="viewport"	
  
 content="initial-­‐scale=1.0,	
  
    width=device-­‐width"	
  />


• Makes width of the browser’s viewport
  equal to the width of the device’s screen
Default Viewport   Reset Viewport
     980px             320px
Fluid to
a Fault
 (Remember?
  I said we'd
  come back
     to this
   problem.)


Answer:
Linearize
Need to remove Flexible Widths
#main	
  {
  float:left;
  margin:	
  10px	
  1.041666666666667%;// 10px ÷ 960px
  width:	
  64.5833333333333%; // 620px ÷ 960px
}

#other	
  {
  float:right;
  margin:	
  10px	
  1.041666666666667%;// 10px ÷ 960px
  width:	
  29.1666666666667%; // 280px ÷ 960px
}
Target Tablets and Smaller

@media	
  screen	
  and	
  (max-­‐width:	
  768px)	
  {
   //	
  css	
  goes	
  here
}


    • This rule tells the browser to render the
       enclosed CSS if the viewport is smaller
       than 768px

                                   *The iPad is 768px in portrait orientation
#main	
  {
  float:left;
  margin:	
  10px	
  1.041666666666667%;
  width:	
  64.5833333333333%;	
  }

#other	
  {
  float:right;
  margin:	
  10px	
  1.041666666666667%;
  width:	
  29.1666666666667%;	
  }



 @media	
  screen	
  and	
  (max-­‐width:	
  768px)	
  {
 	
   #main,	
  #other	
  {
 	
   	
   margin:	
  10px;
 	
   	
   width:	
  auto;
 	
   }
 }
Layout Responds to Resizing
   769px           768px
More Linearization
            for Smaller Devices
.image	
  {
  width:	
  50%;
}


@media	
  screen	
  and	
  (max-­‐width:	
  480px)	
  {
	
   .image	
  {
	
   	
   width:	
  auto;
	
   }
}
481px   400px
Going Larger
Design for larger page
@media	
  screen	
  and	
  (min-­‐width:	
  1200px)	
  {...}


Or limit your page size
#page	
  {max-­‐width:1024px}
Media Query Support

   3.5+                               3+



   9.5+                               9+


          *can fill in some gaps with respond.js
Three Components

• A flexible grid-based layout
• Flexible images and media
• Media queries (CSS3)
The Strategy So Far
/*	
  desktop	
  styles	
  for	
  flexible	
  grid	
  and	
  media	
  */
#page	
  {...}
/*	
  media	
  queries	
  targeting	
  different	
  breakpoints	
  */
@media	
  screen	
  and	
  (max-­‐width:	
  768px)	
  {...}

@media	
  screen	
  and	
  (max-­‐width:	
  480px)	
  {...}
Potential Problems
     • Some devices will not understand
        media queries
     • Some mobile devices will not
        have javascript




However, a flexible layout provides a good fallback
Mobile First
• Have your design default to a simple,
  small-screen layout (very linear)
• Progressively enhance the design using media
  queries as the viewport resolution increases
• If a browser lacks media query support (and
  javascript isn't available as a fix), they get the
  attractive, single-column layout
The Revised Strategy
/*	
  default,	
  linear	
  layout	
  */
#page	
  {
 width:	
  auto;
 max-­‐width:	
  700px;
 }
/*	
  media	
  queries	
  build	
  a	
  flexible	
  layout	
  and	
  enhance	
  at	
  
different	
  breakpoints	
  */
@media	
  screen	
  and	
  (min-­‐width:	
  600px)	
  {...}
@media	
  screen	
  and	
  (min-­‐width:	
  860px)	
  {...}
@media	
  screen	
  and	
  (min-­‐width:	
  1024px)	
  {...}
Final Result:
Mobile First Responsive Design




     example: http://ethanmarcotte.com/
Common Breakpoints
320 pixels    For small screen devices, like phones, held in portrait mode.


480 pixels    For small screen devices, like phones, held in landscape mode.


              Smaller tablets, like the Amazon Kindle (600×800) and Barnes &
600 pixels    Noble Nook (600×1024), held in portrait mode.


768 pixels    Ten-inch tablets like the iPad (768×1024) held in portrait mode.


              Tablets like the iPad (1024×768) held in landscape mode, as well as
1024 pixels   certain laptop, netbook, and desktop displays.


1200 pixels   For widescreen displays, primarily laptop and desktop browsers.
Awesome RWD Examples
•       http://responsivewebdesign.com/robot/

•       http://letsembark.com/

•       http://cognition.happycog.com/



                                    More Reading
    •    Responsive Web Design – Ideas, Technology, and Examples
         http://www.onextrapixel.com/2012/05/17/responsive-web-design-ideas-technology-and-examples/


    •    Ethan Marcotte's original article
         http://www.alistapart.com/articles/responsive-web-design/


    •    Responsive design – harnessing the power of media queries
         http://googlewebmastercentral.blogspot.co.uk/2012/04/responsive-design-harnessing-power-of.html


    •    Responsive Web Design (The book)
         http://www.abookapart.com/products/responsive-web-design
Thanks!
Ben MacNeill
ben.macneill@extension.org

Twitter:
@chillnc

Presentation at:
slideshare.net/chillnc/

Demo files:
extension.org/share/netc/rwd/

More Related Content

Viewers also liked

Data-driven parenting - Trixie Tracker
Data-driven parenting - Trixie TrackerData-driven parenting - Trixie Tracker
Data-driven parenting - Trixie Tracker
Ben MacNeill
 
Presenting Visual Information(Notes)
Presenting Visual Information(Notes)Presenting Visual Information(Notes)
Presenting Visual Information(Notes)
Ben MacNeill
 

Viewers also liked (11)

Google Analytics: Q&A
Google Analytics: Q&AGoogle Analytics: Q&A
Google Analytics: Q&A
 
Evaluate Content with Google Analytics (Oct 2009)
Evaluate Content with Google Analytics (Oct 2009)Evaluate Content with Google Analytics (Oct 2009)
Evaluate Content with Google Analytics (Oct 2009)
 
Advanced Google Analytics Techniques
Advanced Google Analytics Techniques Advanced Google Analytics Techniques
Advanced Google Analytics Techniques
 
Subversion Clients for the Mac - svnX
Subversion Clients  for the Mac - svnXSubversion Clients  for the Mac - svnX
Subversion Clients for the Mac - svnX
 
Ask an Expert 2.0
Ask an Expert 2.0Ask an Expert 2.0
Ask an Expert 2.0
 
Data-driven parenting - Trixie Tracker
Data-driven parenting - Trixie TrackerData-driven parenting - Trixie Tracker
Data-driven parenting - Trixie Tracker
 
Presenting Visual Information(Notes)
Presenting Visual Information(Notes)Presenting Visual Information(Notes)
Presenting Visual Information(Notes)
 
Style Your Site Part 1
Style Your Site Part 1Style Your Site Part 1
Style Your Site Part 1
 
Best Practices for Structuring Your Web Content
Best Practices for Structuring Your  Web ContentBest Practices for Structuring Your  Web Content
Best Practices for Structuring Your Web Content
 
Πεπτικό Σύστημα
Πεπτικό ΣύστημαΠεπτικό Σύστημα
Πεπτικό Σύστημα
 
Lean Six-Sigma 101
Lean Six-Sigma 101Lean Six-Sigma 101
Lean Six-Sigma 101
 

Similar to Responsive web design

Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
Justin Avery
 
Responsive UX - One size fits all @BigDesign conference #BigD12
Responsive UX - One size fits all   @BigDesign conference #BigD12Responsive UX - One size fits all   @BigDesign conference #BigD12
Responsive UX - One size fits all @BigDesign conference #BigD12
touchtitans
 
FITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web Design
Frédéric Harper
 
Responsive Web Design - What You Need to Know to Get Started
Responsive Web Design - What You Need to Know to Get StartedResponsive Web Design - What You Need to Know to Get Started
Responsive Web Design - What You Need to Know to Get Started
jennybchicken
 
Lect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptxLect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptx
zainm7032
 

Similar to Responsive web design (20)

Great Responsive-ability Web Design
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web Design
 
Advancio, Inc. Academy: Responsive Web Design
Advancio, Inc. Academy: Responsive Web DesignAdvancio, Inc. Academy: Responsive Web Design
Advancio, Inc. Academy: Responsive Web Design
 
An Introduction to Responsive Design
An Introduction to Responsive DesignAn Introduction to Responsive Design
An Introduction to Responsive Design
 
Responsive Web Design - Web & PHP Conference - 2013-09-18
Responsive Web Design - Web & PHP Conference - 2013-09-18Responsive Web Design - Web & PHP Conference - 2013-09-18
Responsive Web Design - Web & PHP Conference - 2013-09-18
 
Responsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPHResponsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPH
 
Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)
Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)
Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)
 
Responsive Web Design & APEX Theme 25
Responsive Web Design & APEX Theme 25Responsive Web Design & APEX Theme 25
Responsive Web Design & APEX Theme 25
 
Let's dig into the Omega Theme!
Let's dig into the Omega Theme!Let's dig into the Omega Theme!
Let's dig into the Omega Theme!
 
Responsive Design & Mobile First
Responsive Design & Mobile FirstResponsive Design & Mobile First
Responsive Design & Mobile First
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Intro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS featuresIntro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS features
 
Responsive UX - One size fits all @BigDesign conference #BigD12
Responsive UX - One size fits all   @BigDesign conference #BigD12Responsive UX - One size fits all   @BigDesign conference #BigD12
Responsive UX - One size fits all @BigDesign conference #BigD12
 
Responsive Web Design - Devoxx UK - 2014-06-13
Responsive Web Design - Devoxx UK - 2014-06-13Responsive Web Design - Devoxx UK - 2014-06-13
Responsive Web Design - Devoxx UK - 2014-06-13
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and Techniques
 
FITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web Design
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
 
Responsive Web Design - What You Need to Know to Get Started
Responsive Web Design - What You Need to Know to Get StartedResponsive Web Design - What You Need to Know to Get Started
Responsive Web Design - What You Need to Know to Get Started
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + Fireworks
 
Lect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptxLect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptx
 
Responsive Design in iMIS Part 2
Responsive Design in iMIS Part 2Responsive Design in iMIS Part 2
Responsive Design in iMIS Part 2
 

Recently uploaded

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 

Responsive web design

  • 1. Responsive Web Design Ben MacNeill ben.macneill@extension.org Twitter: @chillnc Presentation at: slideshare.net/chillnc/ Demo files: extension.org/share/netc/rwd/
  • 2. This presentation pulls from this excellent book: Responsive Web Design by Ethan Marcotte
  • 3. What is Responsive Web Design?
  • 6. Why Responsive Design? • Designing for specific devices — too many • Siloed pages: /mobile/page.html  — trapped
  • 7. Three Components • A flexible grid-based layout • Flexible images and media • Media queries (CSS3)
  • 8. The Grid http://grids.heroku.com/
  • 9.
  • 10. 960px page, 60px column, 12 wide with 20px gutter
  • 11. 960px page 940px 620px 300px 600px 280px
  • 12. Traditional Fixed Grid #page  {   margin:  36px  auto;   width:  960px; }
  • 13. Flexible Grid #page  {   margin:  36px  auto;   width:  90%; } (90% is somewhat arbitrary)
  • 14. 960px page 940px 620px 300px 600px 280px How does 940px translate to a flexible width? It depends on its container.
  • 15. Pixels to Percentages target  ÷  context  =  result #title #page 940px 960px %
  • 16. 940px  ÷  960px  =  0.979166666666667 97.9166666666667% target  ÷  context  =  result
  • 17. #page  {   margin:  36px  auto;   width:  90%; } #title  {   width:  97.9166666666667%;   //  940px  ÷  960px }
  • 18. 960px page 940px 620px 300px 600px 280px 620px  ÷  960px  =  0.645833333333333 300px  ÷  960px  =  0.3125 600px  ÷  620px  =  0.967741935483871 280px  ÷  300px  =  0.933333333333333
  • 20. Fluid to a Fault (we'll come back to this problem)
  • 21. We also need Fluid Typography body  {font-­‐size:  100%} 24px  ÷  16px  =  1.5em h1  {font-­‐size:  1.5em} target  ÷  context  =  result
  • 22. Three Components • A flexible grid-based layout • Flexible images and media • Media queries (CSS3)
  • 24. Basic Markup .image  { float:  right; margin-­‐bottom:  0.5em; margin-­‐left:  01.6666666666667%; /*  10px  ÷  600px  */ width:  50%;  /*  300px  ÷  600px  */ } <p  class="image"> <img  src="turtle.jpg"  /> </p>
  • 25.
  • 26.
  • 28.
  • 30. Caveats • max-width doesn't work in IE6 • Image scaling hiccups in IE7 & FF2
  • 31. We don’t care about IE6.
  • 32. Is it okay to stop caring about IE7? • IE7 user base (2.3% - 3.5% May 2012) • Google stopped supporting in Aug 2011 • Facebook began phasing out support in Dec 2011 • Microsoft is discontinuing support in July 2013 • Flexible images work, just somewhat degraded
  • 33. Three Components • A flexible grid-based layout • Flexible images and media • Media queries (CSS3)
  • 34. In the Beginning... Media Types <link  rel="stylesheet"  href="main.css"  media="screen"  /> <link  rel="stylesheet"  href="paper.css"  media="print"  /> <link  rel="stylesheet"  href="tiny.css"  media="handheld"/> • Early phones had poor browsers • Media Types proved too broad
  • 35. Media Query @media  screen  and  (min-­‐width:  1024px)  { body  {font-­‐size:  100%;} } • Contains two components: media type and (query) • The query contains a feature and a value • Can be placed right in your stylesheet
  • 36. Short Detour: Reseting the Viewport • Modern mobile browsers pretend that web pages are desktop-browser size (~900px) • They render them at that size • Then shrink the resulting page to fit in the device window
  • 37.
  • 38. Override the Default  <meta  name="viewport"   content="initial-­‐scale=1.0,   width=device-­‐width"  /> • Makes width of the browser’s viewport equal to the width of the device’s screen
  • 39. Default Viewport Reset Viewport 980px 320px
  • 40. Fluid to a Fault (Remember? I said we'd come back to this problem.) Answer: Linearize
  • 41. Need to remove Flexible Widths #main  { float:left; margin:  10px  1.041666666666667%;// 10px ÷ 960px width:  64.5833333333333%; // 620px ÷ 960px } #other  { float:right; margin:  10px  1.041666666666667%;// 10px ÷ 960px width:  29.1666666666667%; // 280px ÷ 960px }
  • 42. Target Tablets and Smaller @media  screen  and  (max-­‐width:  768px)  { //  css  goes  here } • This rule tells the browser to render the enclosed CSS if the viewport is smaller than 768px *The iPad is 768px in portrait orientation
  • 43. #main  { float:left; margin:  10px  1.041666666666667%; width:  64.5833333333333%;  } #other  { float:right; margin:  10px  1.041666666666667%; width:  29.1666666666667%;  } @media  screen  and  (max-­‐width:  768px)  {   #main,  #other  {     margin:  10px;     width:  auto;   } }
  • 44. Layout Responds to Resizing 769px 768px
  • 45. More Linearization for Smaller Devices .image  { width:  50%; } @media  screen  and  (max-­‐width:  480px)  {   .image  {     width:  auto;   } }
  • 46. 481px 400px
  • 47. Going Larger Design for larger page @media  screen  and  (min-­‐width:  1200px)  {...} Or limit your page size #page  {max-­‐width:1024px}
  • 48. Media Query Support 3.5+ 3+ 9.5+ 9+ *can fill in some gaps with respond.js
  • 49. Three Components • A flexible grid-based layout • Flexible images and media • Media queries (CSS3)
  • 50. The Strategy So Far /*  desktop  styles  for  flexible  grid  and  media  */ #page  {...} /*  media  queries  targeting  different  breakpoints  */ @media  screen  and  (max-­‐width:  768px)  {...} @media  screen  and  (max-­‐width:  480px)  {...}
  • 51. Potential Problems • Some devices will not understand media queries • Some mobile devices will not have javascript However, a flexible layout provides a good fallback
  • 52. Mobile First • Have your design default to a simple, small-screen layout (very linear) • Progressively enhance the design using media queries as the viewport resolution increases • If a browser lacks media query support (and javascript isn't available as a fix), they get the attractive, single-column layout
  • 53. The Revised Strategy /*  default,  linear  layout  */ #page  { width:  auto; max-­‐width:  700px; } /*  media  queries  build  a  flexible  layout  and  enhance  at   different  breakpoints  */ @media  screen  and  (min-­‐width:  600px)  {...} @media  screen  and  (min-­‐width:  860px)  {...} @media  screen  and  (min-­‐width:  1024px)  {...}
  • 54. Final Result: Mobile First Responsive Design example: http://ethanmarcotte.com/
  • 55. Common Breakpoints 320 pixels For small screen devices, like phones, held in portrait mode. 480 pixels For small screen devices, like phones, held in landscape mode. Smaller tablets, like the Amazon Kindle (600×800) and Barnes & 600 pixels Noble Nook (600×1024), held in portrait mode. 768 pixels Ten-inch tablets like the iPad (768×1024) held in portrait mode. Tablets like the iPad (1024×768) held in landscape mode, as well as 1024 pixels certain laptop, netbook, and desktop displays. 1200 pixels For widescreen displays, primarily laptop and desktop browsers.
  • 56. Awesome RWD Examples • http://responsivewebdesign.com/robot/ • http://letsembark.com/ • http://cognition.happycog.com/ More Reading • Responsive Web Design – Ideas, Technology, and Examples http://www.onextrapixel.com/2012/05/17/responsive-web-design-ideas-technology-and-examples/ • Ethan Marcotte's original article http://www.alistapart.com/articles/responsive-web-design/ • Responsive design – harnessing the power of media queries http://googlewebmastercentral.blogspot.co.uk/2012/04/responsive-design-harnessing-power-of.html • Responsive Web Design (The book) http://www.abookapart.com/products/responsive-web-design