SlideShare a Scribd company logo
the secret sauce:
responsive web design
Frédéric Harper
@fharper
http://immun.io
Sr. Technical Evangelist @ IMMUNIO
JavaScript Open Day Montreal – 2015-11-19
CreativeCommons:https://flic.kr/p/6n9cBB
in a
galaxy
not so far away
Creative Commons: https://flic.kr/p/M3s78
Creative Commons: https://flic.kr/p/dwqgAh
Creative Commons: https://flic.kr/p/84tg1p
anti-
patterns
Creative Commons: http://xkcd.com/773/
responsive
web
design
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015-11-19
ü  Thinking of the user’s needs instead of ours.
ü  Adapt to various device capabilities instead of configurations.
ü  Help future-proof our sites.
responsive web design
Creative Commons: https://flic.kr/p/84tg1p
that’s
the
way
1.  A flexible, grid-based layout,
2.  Flexible images and media,
3.  Media queries.
the secret sauce
flexible
grid-based
layout
§  Non-responsive sites are no fun.
§  Fixed-width sites are not the best experiences.
§  Not thinking about new web platforms.
what’s the problem?
pixels to ems algorithm
pixels to ems algorithm
target	 context	 result	
* you can use rem – context will be root
h1 {
font-size: 24px;
}
24 / 16 = 1.5
h1 {
font-size: 1.5em;
}
h1 a {
font-size: 11px;
}
11 / 24 = 0.45833333+
h1 a {
font-size: 0.458+;
}
Responsive	Web	Design	READ	MORE	>>	
em	
%	
target	 context	 result
what about the grid?
#page	
.main	 .other	
.blog	
body
#page {
width: 960px;
}
.blog {
width: 900px;
}
.blog .main {
width: 566px;
}
.blog .other {
width: 331px;
}
#page {
width: 960/1024;
}
.blog {
width: 900/960;
}
.blog .main {
width: 566/900;
}
.blog .other {
width: 331/900;
}
#page {
width: 93.75%;
}
.blog { /* 900/960 */
width: 93.75%;
}
.blog .main {
width: 62.88+%;
}
.blog .other {
width: 36.77+%;
}
flexible
images
& media
/* Works on other media like <video> */
img {
max-width: 100%;
}
simple solution
<picture>
<source media="(min-width: 40em)” srcset="big-hd.jpg">
<source srcset="small-hd.jpg">
<img src="fallback.jpg" alt=”The image">
</picture>
picture element
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015-11-19
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015-11-19
media
queries
§  We could define media types: screen and print.
§  But not easily respond to the user’s display.
§  Lots of grunt work.
§  Didn’t spend much time thinking about mobile devices.
not so long ago…
The CSS3 Media Queries Module specifies methods to enable web developers to scope a style
sheet to a set of precise device capabilities.
css media queries
@media screen and (max-width: 600px) {
body {
font-size: 80%;
}
}
that simple
@media screen and (min-width:320px) and

(max-width:480px) { /* add your code here */ }
@media not print and (max-width:600px) {
/* add your code here */ }
@media screen (x) and (y), print (a) and (b) {
/* add your code here */ }
let’s get funky
@import url(mq.css) only screen and (max-width:600px)
<link rel=“stylesheet”
media=“only screen and (max-width:800px)” href=“mq.css”>
want more?
§  min-width
§  max-width
§  min-height
§  max-height
§  device-width
§  device-height
§  orientation
§  aspect-ratio
§  device-aspect-ratio
§  color
§  color-index
§  monochrome
§  resolution
§  scan
§  grid
media properties
Creative Commons: https://flic.kr/p/84tg1p
little
pea
bakery
old browsers
be
creative
Copyright: http://j.mp/1pA8tpJ
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015-11-19
Creative Commons: https://flic.kr/p/84tg1p
disco
mode
resources
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015-11-19
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015-11-19
http://www.alistapart.com/articles/responsive-web-design/
https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills
http://stunningcss3.com/code/bakery/
http://www.lukew.com/ff/entry.asp?1514
http://mediaqueri.es/
http://getbootstrap.com/
http://www.abookapart.com/products/responsive-web-design
www
be
responsible
be
responsible
responsive
§  Is it best that all sites are responsive?
§  Do we start with mobile-first?
§  Do we go Adaptive Web Design instead?
§  Do we need or want to do visual comps for every device?
§  Don’t dismiss mobile as walking and looking something up.
in the end
Frédéric Harper
fharper@immun.io
@fharper
http://outofcomfortzone.net
http://immun.io

More Related Content

Viewers also liked (15)

PDF
Responsive web design
thu nguyen
 
PDF
euw kurz und gut: Was ist Responsive Webdesign?
eberlewollweber
 
PDF
David Husemoller
dhusemoller
 
PPTX
Responsive with Zurb Foundation
Man Math
 
PDF
Responsive Web Design
Debra Shapiro
 
PDF
Build a Responsive WordPress Theme with Zurbs Foundation Framework
Brendan Sera-Shriar
 
PDF
Responsive Web Design using the Foundation 5 CSS Framework
Chris Morrow
 
PDF
Responsive webdesign WordCampNL 2012
Tom Hermans
 
PDF
Responsive Web Design Basics
Austin Walker
 
PPTX
Framework Foundation Basicão
Carlos Eduardo Kadu
 
PDF
Responsive Web Design and SharePoint
Stefan Bauer
 
PDF
Designing Magazines: Part 2
Jennifer Janviere
 
PPTX
Responsive Web Design
Huy Le
 
PDF
Responsive Webdesign
Antonio De Pasquale
 
PDF
Responsive Web Design Has Become One Of The Hottest Trend
AditMicrosys Australia
 
Responsive web design
thu nguyen
 
euw kurz und gut: Was ist Responsive Webdesign?
eberlewollweber
 
David Husemoller
dhusemoller
 
Responsive with Zurb Foundation
Man Math
 
Responsive Web Design
Debra Shapiro
 
Build a Responsive WordPress Theme with Zurbs Foundation Framework
Brendan Sera-Shriar
 
Responsive Web Design using the Foundation 5 CSS Framework
Chris Morrow
 
Responsive webdesign WordCampNL 2012
Tom Hermans
 
Responsive Web Design Basics
Austin Walker
 
Framework Foundation Basicão
Carlos Eduardo Kadu
 
Responsive Web Design and SharePoint
Stefan Bauer
 
Designing Magazines: Part 2
Jennifer Janviere
 
Responsive Web Design
Huy Le
 
Responsive Webdesign
Antonio De Pasquale
 
Responsive Web Design Has Become One Of The Hottest Trend
AditMicrosys Australia
 

Similar to Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015-11-19 (20)

PDF
Design
robynurdiansyah
 
PDF
Responsive Web Design - Devoxx UK - 2014-06-13
Frédéric Harper
 
PPTX
Responsive Web Design - Web & PHP Conference - 2013-09-18
Frédéric Harper
 
PPT
Responsive Web Design
Justin Avery
 
PDF
Great Responsive-ability Web Design
Mike Wilcox
 
PPTX
FITC - 2012-04-23 - Responsive Web Design
Frédéric Harper
 
PPTX
Content authoring for responsive design
MadCapMike
 
PDF
The specs behind the sex, mobile-friendly layout beyond the desktop
betabeers
 
PDF
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Patrick Lauke
 
PDF
Adaptive layouts - standards>next Manchester 23.03.2011
Patrick Lauke
 
PDF
Module 08: Responsive Web Design
Daniel Drew Turner
 
PPTX
CSS3 Media Queries And Creating Adaptive Layouts
Svitlana Ivanytska
 
PDF
CSS3: Simply Responsive
Denise Jacobs
 
PPTX
responsive web design 1_oct_2013
Suresh B
 
PPTX
responsive web design
Suresh B
 
PPTX
Rwd ppt
Suresh B
 
PPTX
Responsive Web design _2013
Suresh B
 
PDF
Responsive web design
Ben MacNeill
 
PPTX
SCREENS - 2012-09-28 - Responsive Web Design, get the best from your design
Frédéric Harper
 
KEY
Responsive Web Design
Jason Harwig
 
Responsive Web Design - Devoxx UK - 2014-06-13
Frédéric Harper
 
Responsive Web Design - Web & PHP Conference - 2013-09-18
Frédéric Harper
 
Responsive Web Design
Justin Avery
 
Great Responsive-ability Web Design
Mike Wilcox
 
FITC - 2012-04-23 - Responsive Web Design
Frédéric Harper
 
Content authoring for responsive design
MadCapMike
 
The specs behind the sex, mobile-friendly layout beyond the desktop
betabeers
 
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Patrick Lauke
 
Adaptive layouts - standards>next Manchester 23.03.2011
Patrick Lauke
 
Module 08: Responsive Web Design
Daniel Drew Turner
 
CSS3 Media Queries And Creating Adaptive Layouts
Svitlana Ivanytska
 
CSS3: Simply Responsive
Denise Jacobs
 
responsive web design 1_oct_2013
Suresh B
 
responsive web design
Suresh B
 
Rwd ppt
Suresh B
 
Responsive Web design _2013
Suresh B
 
Responsive web design
Ben MacNeill
 
SCREENS - 2012-09-28 - Responsive Web Design, get the best from your design
Frédéric Harper
 
Responsive Web Design
Jason Harwig
 
Ad

More from Frédéric Harper (20)

PDF
2017-11-09 - Fitbit Norcal Developers Meetup (fred)
Frédéric Harper
 
PDF
2018 04-25 - HLTH hackathon
Frédéric Harper
 
PDF
2018-06-07 - Singapore Fitbit Developers - Fitbit SDK & Web API Overview
Frédéric Harper
 
PDF
2018 06-05 - Tokyo Fitbit Developers - Fitbit SDK & Web API Overview
Frédéric Harper
 
PDF
Public speaking - FDP tech leads summit - 2018-04-30
Frédéric Harper
 
PDF
2018 04-25 - HLTH hackathon
Frédéric Harper
 
PDF
From employee to freelance developer in 10 steps - DevTeach - 2017-07-04
Frédéric Harper
 
PDF
Infrastructure as a service to its maximum, a cultural change - S2LQ - 2016-0...
Frédéric Harper
 
PDF
With great power comes great responsibility - Microsoft Canada Open Source co...
Frédéric Harper
 
PDF
Frédéric harper i don’t like open source, and you shouldn't like it eithe...
Frédéric Harper
 
PDF
Is your python application secure? - PyCon Canada - 2015-11-07
Frédéric Harper
 
PDF
Personal branding for developers - West Island developers and entrepreneurs m...
Frédéric Harper
 
PDF
Differentiating yourself humber college - 2015-03-30
Frédéric Harper
 
PDF
Differentiating yourself - Hack Western - 2015-03-28
Frédéric Harper
 
PDF
Le personal branding, plus important que jamais - PHP Québec - 2015-03-05
Frédéric Harper
 
PDF
Building a personal brand in the developer community - Codementor Office Hour...
Frédéric Harper
 
PDF
Ma Carrière Techno - École secondaire St-Henri - 2014-11-27
Frédéric Harper
 
PDF
Mozilla - HEC Open Source Business Models - 2014-11-24
Frédéric Harper
 
PDF
Ma carrière techno école secondaire lucien-pagé - 2014-11-17
Frédéric Harper
 
PDF
Ma Carrière Techno - École secondaire Père Marquette - 2014-11-14
Frédéric Harper
 
2017-11-09 - Fitbit Norcal Developers Meetup (fred)
Frédéric Harper
 
2018 04-25 - HLTH hackathon
Frédéric Harper
 
2018-06-07 - Singapore Fitbit Developers - Fitbit SDK & Web API Overview
Frédéric Harper
 
2018 06-05 - Tokyo Fitbit Developers - Fitbit SDK & Web API Overview
Frédéric Harper
 
Public speaking - FDP tech leads summit - 2018-04-30
Frédéric Harper
 
2018 04-25 - HLTH hackathon
Frédéric Harper
 
From employee to freelance developer in 10 steps - DevTeach - 2017-07-04
Frédéric Harper
 
Infrastructure as a service to its maximum, a cultural change - S2LQ - 2016-0...
Frédéric Harper
 
With great power comes great responsibility - Microsoft Canada Open Source co...
Frédéric Harper
 
Frédéric harper i don’t like open source, and you shouldn't like it eithe...
Frédéric Harper
 
Is your python application secure? - PyCon Canada - 2015-11-07
Frédéric Harper
 
Personal branding for developers - West Island developers and entrepreneurs m...
Frédéric Harper
 
Differentiating yourself humber college - 2015-03-30
Frédéric Harper
 
Differentiating yourself - Hack Western - 2015-03-28
Frédéric Harper
 
Le personal branding, plus important que jamais - PHP Québec - 2015-03-05
Frédéric Harper
 
Building a personal brand in the developer community - Codementor Office Hour...
Frédéric Harper
 
Ma Carrière Techno - École secondaire St-Henri - 2014-11-27
Frédéric Harper
 
Mozilla - HEC Open Source Business Models - 2014-11-24
Frédéric Harper
 
Ma carrière techno école secondaire lucien-pagé - 2014-11-17
Frédéric Harper
 
Ma Carrière Techno - École secondaire Père Marquette - 2014-11-14
Frédéric Harper
 
Ad

Recently uploaded (20)

PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
July Patch Tuesday
Ivanti
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
July Patch Tuesday
Ivanti
 

Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015-11-19