SlideShare a Scribd company logo
the secret sauce:
responsive web design
Frédéric Harper
@fharper
http://outofcomfortzone.net
Chief of Awesome @ Unicorn Inc.
MSDEVMTL – 2016-01-25
CreativeCommons:https://flic.kr/p/kbFvBQ
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 - MSDEVMTL - 2016-01-25
ü  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 - MSDEVMTL - 2016-01-25
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
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 - MSDEVMTL - 2016-01-25
Creative Commons: https://flic.kr/p/84tg1p
disco
mode
resources
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
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@oocz.net
@fharper
http://outofcomfortzone.net

More Related Content

PDF
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...
PDF
Workshop UX Patterns for Developers - MicrosoftCommiunity
PPTX
Client responsive design
PPTX
Responsive Web Design in iMIS (NiUG Austin 2015)
PPTX
Responsive Design in iMIS Part 2
PPT
Logo design
DOCX
Wiidget
PDF
My Portfolio (pdf)
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...
Workshop UX Patterns for Developers - MicrosoftCommiunity
Client responsive design
Responsive Web Design in iMIS (NiUG Austin 2015)
Responsive Design in iMIS Part 2
Logo design
Wiidget
My Portfolio (pdf)

Similar to Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25 (20)

PDF
Responsive Web Design, get the best out of your designs - JavaScript Open Day...
PDF
PDF
Responsive Web Design - Devoxx UK - 2014-06-13
PPTX
Responsive Web Design - Web & PHP Conference - 2013-09-18
PPT
Responsive Web Design
PPTX
Content authoring for responsive design
PDF
The specs behind the sex, mobile-friendly layout beyond the desktop
PDF
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
PPTX
CSS3 Media Queries And Creating Adaptive Layouts
PPTX
FITC - 2012-04-23 - Responsive Web Design
PPTX
Rwd ppt
PPTX
responsive web design 1_oct_2013
PPTX
responsive web design
PPTX
Responsive Web design _2013
PDF
Great Responsive-ability Web Design
PDF
Adaptive layouts - standards>next Manchester 23.03.2011
PDF
Responsive Web Design
KEY
Responsive Web Design
PDF
Module 08: Responsive Web Design
PDF
CSS3: Simply Responsive
Responsive Web Design, get the best out of your designs - JavaScript Open Day...
Responsive Web Design - Devoxx UK - 2014-06-13
Responsive Web Design - Web & PHP Conference - 2013-09-18
Responsive Web Design
Content authoring for responsive design
The specs behind the sex, mobile-friendly layout beyond the desktop
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
CSS3 Media Queries And Creating Adaptive Layouts
FITC - 2012-04-23 - Responsive Web Design
Rwd ppt
responsive web design 1_oct_2013
responsive web design
Responsive Web design _2013
Great Responsive-ability Web Design
Adaptive layouts - standards>next Manchester 23.03.2011
Responsive Web Design
Responsive Web Design
Module 08: Responsive Web Design
CSS3: Simply Responsive
Ad

More from Frédéric Harper (20)

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

Recently uploaded (20)

PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Modernizing your data center with Dell and AMD
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
cuic standard and advanced reporting.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Machine learning based COVID-19 study performance prediction
PDF
Empathic Computing: Creating Shared Understanding
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Encapsulation theory and applications.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Reach Out and Touch Someone: Haptics and Empathic Computing
NewMind AI Weekly Chronicles - August'25 Week I
Modernizing your data center with Dell and AMD
Unlocking AI with Model Context Protocol (MCP)
Mobile App Security Testing_ A Comprehensive Guide.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Diabetes mellitus diagnosis method based random forest with bat algorithm
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Encapsulation_ Review paper, used for researhc scholars
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Understanding_Digital_Forensics_Presentation.pptx
cuic standard and advanced reporting.pdf
Spectral efficient network and resource selection model in 5G networks
Machine learning based COVID-19 study performance prediction
Empathic Computing: Creating Shared Understanding
Network Security Unit 5.pdf for BCA BBA.
Encapsulation theory and applications.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...

Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25