SlideShare a Scribd company logo
Real-world CSS3

January 25, 2011
CSS3 book launch
Zoe Mickley Gillenwater
@zomigi
What I do
          Books                         Web
   new    Stunning CSS3:                Accessibility
          A Project-based Guide to      specialist for AT&T
          the Latest in CSS             Web design/CSS
          www.stunningcss3.com          consultant
                                        Member of Adobe
Dec '08   Flexible Web Design:          Task Force for WaSP
          Creating Liquid and Elastic
          Layouts with CSS
          www.flexiblewebbook.com

                                                              2
Is it ready yet?

Photo by U.S. Department of Agriculture, www.flickr.com/photos/usdagov/5201431107/   3
Status of modules
www.w3.org/Style/CSS/current-work




                                    4
Don't wait for “recommendation”




                                  5
Use the parts of CSS3 that:
✔ have generally stable syntax.
✔ have good support.
✔ don't harm non-supporting browsers by
  their lack.




                                          6
Progressive enhancement




                          7
Good enhancement
Firefox




   IE 8




                   8
Enhancement failure
RGBA/HSLA in
      Firefox




RGBA/HSLA in
        IE 8



                      9
A few of the things
      you can use...




Photo by Kristin Roach, www.flickr.com/photos/kristinroach/3995676135   10
Go forth and style
Safe when used         Use a little more
wisely                 cautiously
border-radius          transforms
box-shadow             gradients
text-shadow            animations
multiple backgrounds   HSLA (or RGBA if youyourself)
                               things hard on
                                              like to make

border-image           new selectors
box-sizing
transitions
@font-face
media queries
                                                             11
Benefits of CSS3       (besides looking cool)



Decrease            Increase
development time    usability
maintenance time    accessibility
page loading time   adaptability across devices
                    search engine placement




                                                  12
Reduced development and
maintenance time
• Fewer images, Flash, JavaScript
• Streamlined markup




                                    13
Increased page performance
• Smaller file sizes
• Fewer HTTP requests


Reducing the number of HTTP requests…is
the most important guideline for improving
performance for first time visitors.
                          Yahoo! Exceptional Performance Team,
             http://developer.yahoo.com/performance/rules.html

                                                                 14
Better search engine
placement
• Google uses speed as ranking factor
• Real text instead of image or Flash text




                                             15
Increased usability
• Real text
• Optimized styles based on device
  capabilities




                                     16
Real-world example




                     17
Before CSS3

                       FF 3.6   IE 8   IE 6
HTTP requests              36     37     47
Loading time seconds      1.5    1.3      3




                                              18
The nav bar
Before: 8 images   inactive

                   hovered

                   current page indicator




                                            19
The nav bar
Before: 8 images   inactive

                   hovered

                   current page indicator




After: 1 image




                                            20
Before CSS3, optimized

                          FF 3.6   IE 8   IE 6
HTTP requests                 29     30     33
Loading time seconds         1.3   1.15      2
               decrease    13%     11%    33%




                                                 21
After CSS3

                          FF 3.6    IE 8    IE 6
HTTP requests                 22      23      24
Loading time seconds         1.1       1     1.5
               decrease    15%     13%     25%




                                                   22
IE 9 beta




            23
IE 8




       24
IE 6




       25
Wrapping tabs




Larger text + narrow window =
ugly Amazon double-row tabs from 2000




                                        26
Media query for nav bar
@media all and (max-width:52em) {     English translation:
    #swoosh { display: none; }        Up to a maximum
    #mainnav { padding: 8px 0; }
                                      width of 52 ems, use
    #mainnav ul { margin: 0; }
    #mainnav li {
                                      these styles. Once you
       margin-left: 12px;             get past 52 ems, use
       padding: 0;                    the regular styles.
       border: none;
       -moz-border-radius: 0;
       -webkit-border-radius: 0;
       border-radius: 0;
       background: none; }
    #mainnav li:hover { background:   none; }
}
                                                               27
Media queries separated
<link rel="stylesheet" href="main.css">

<link rel="stylesheet" href="narrow.css"
media="only screen and (max-width:52em)">




                                            28
IE support
Make it work in IE 5-8 with JavaScript
http://code.google.com/p/css3-mediaqueries-js/

<!--[if lte IE 8]>
<script src="css3-mediaqueries.js"></script>
<![endif]-->




                                                 29
Media queries for mobile
min-width
max-width
device-width
min-device-width
max-device-width
orientation
-webkit-min-device-pixel-ratio



                                 30
Targeting iPhone, Android, etc.
 @media screen and
portrait & landscape (min-width: 320px) and

                     (max-width: 480px)
portrait & landscape   (min-device-width: 320px) and
                       (max-device-width: 480px)
portrait & landscape   (max-device-width: 480px)
     landscape only    (min-width: 321px)
       portrait only   (max-width: 320px)

                                                   31
Targeting iPad
 @media screen and
portrait & landscape (min-device-width: 768px) and
                     (max-device-width: 1024px)
   landscape only   (min-width: 769px)
   landscape only   (min-device-width: 481px) and
                    (max-device-width: 1024px)
                    and (orientation: landscape)
    portrait only   (min-device-width: 481px) and
                    (max-device-width: 1024px)
                    and (orientation: portrait)
                                                 32
Viewport meta tag
Forces mobile devices to scale viewport to
actual device width

<meta name="viewport"
      content="width=device-width,
               minimum-scale=1.0,
               maximum-scale=1.0">




                                             33
Closer look: tabs



• border-radius for rounded corners on
  top only
• HSLA semitransparent white gradient for
  background



                                            34
Closer look: multiple columns




• column-count on paragraph to set
  number of columns with variable width
• column-gap to control gutter width
                                          35
Closer look: deals badge
• width/height set in
  ems
• border-radius set to
  half width/height to
  make circle
• green dashed border is
  actual border; white
  solid border is hard-
  edged box-shadow
• second fuzzy gray
  box-shadow beneath       36
Learn more
Download slides, get links:
www.zomigi.com/blog/css3-book-launch-event/

Stunning CSS3 book:
www.stunningcss3.com

Zoe Mickley Gillenwater
@zomigi
design@zomigi.com
www.zomigi.com
                                              37
Questions?




Zoe Mickley Gillenwater
@zomigi
design@zomigi.com
www.zomigi.com
                          38

More Related Content

Viewers also liked (6)

Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)
Zoe Gillenwater
 
Using Flexbox Today (CSS Summit 2016)
Using Flexbox Today (CSS Summit 2016)Using Flexbox Today (CSS Summit 2016)
Using Flexbox Today (CSS Summit 2016)
Zoe Gillenwater
 
Css3
Css3Css3
Css3
Deepak Mangal
 
Using Flexbox Today (Frontend United 2016)
Using Flexbox Today (Frontend United 2016)Using Flexbox Today (Frontend United 2016)
Using Flexbox Today (Frontend United 2016)
Zoe Gillenwater
 
Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)
Zoe Gillenwater
 
Web Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptWeb Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScript
Edureka!
 
Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)
Zoe Gillenwater
 
Using Flexbox Today (CSS Summit 2016)
Using Flexbox Today (CSS Summit 2016)Using Flexbox Today (CSS Summit 2016)
Using Flexbox Today (CSS Summit 2016)
Zoe Gillenwater
 
Using Flexbox Today (Frontend United 2016)
Using Flexbox Today (Frontend United 2016)Using Flexbox Today (Frontend United 2016)
Using Flexbox Today (Frontend United 2016)
Zoe Gillenwater
 
Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)
Zoe Gillenwater
 
Web Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptWeb Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScript
Edureka!
 

Similar to Real-world CSS3 (20)

Designing with CSS3 Effectively & Efficiently
Designing with CSS3 Effectively & EfficientlyDesigning with CSS3 Effectively & Efficiently
Designing with CSS3 Effectively & Efficiently
Zoe Gillenwater
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + Fireworks
Nathan Smith
 
Great Responsive-ability Web Design
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web Design
Mike Wilcox
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
Ben MacNeill
 
Html5 Whats around the bend
Html5 Whats around the bendHtml5 Whats around the bend
Html5 Whats around the bend
Raj Lal
 
CSS3: Simply Responsive
CSS3: Simply ResponsiveCSS3: Simply Responsive
CSS3: Simply Responsive
Denise Jacobs
 
Html5 more than just html5 v final
Html5  more than just html5 v finalHtml5  more than just html5 v final
Html5 more than just html5 v final
Lohith Goudagere Nagaraj
 
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
Vitaly Friedman
 
[SF HTML5] Responsive Cross-Device Development with Web Standards (2013)
[SF HTML5] Responsive Cross-Device Development with Web Standards (2013)[SF HTML5] Responsive Cross-Device Development with Web Standards (2013)
[SF HTML5] Responsive Cross-Device Development with Web Standards (2013)
Tomomi Imura
 
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake OilCSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
jameswillweb
 
A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....
A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....
A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....
Aidan Foster
 
Ease into HTML5 and CSS3
Ease into HTML5 and CSS3Ease into HTML5 and CSS3
Ease into HTML5 and CSS3
Brian Moon
 
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
 
Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)
Nicholas Zakas
 
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Nicholas Zakas
 
Rwd slidedeck
Rwd slidedeckRwd slidedeck
Rwd slidedeck
Vera Kovaleva
 
Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.
GaziAhsan
 
CSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondCSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to Respond
Denise Jacobs
 
Advancio, Inc. Academy: Responsive Web Design
Advancio, Inc. Academy: Responsive Web DesignAdvancio, Inc. Academy: Responsive Web Design
Advancio, Inc. Academy: Responsive Web Design
Advancio
 
MW2011 Grid-based Web Design presentation
MW2011 Grid-based Web Design presentationMW2011 Grid-based Web Design presentation
MW2011 Grid-based Web Design presentation
Charlie Moad
 
Designing with CSS3 Effectively & Efficiently
Designing with CSS3 Effectively & EfficientlyDesigning with CSS3 Effectively & Efficiently
Designing with CSS3 Effectively & Efficiently
Zoe Gillenwater
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + Fireworks
Nathan Smith
 
Great Responsive-ability Web Design
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web Design
Mike Wilcox
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
Ben MacNeill
 
Html5 Whats around the bend
Html5 Whats around the bendHtml5 Whats around the bend
Html5 Whats around the bend
Raj Lal
 
CSS3: Simply Responsive
CSS3: Simply ResponsiveCSS3: Simply Responsive
CSS3: Simply Responsive
Denise Jacobs
 
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
Vitaly Friedman
 
[SF HTML5] Responsive Cross-Device Development with Web Standards (2013)
[SF HTML5] Responsive Cross-Device Development with Web Standards (2013)[SF HTML5] Responsive Cross-Device Development with Web Standards (2013)
[SF HTML5] Responsive Cross-Device Development with Web Standards (2013)
Tomomi Imura
 
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake OilCSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
jameswillweb
 
A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....
A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....
A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....
Aidan Foster
 
Ease into HTML5 and CSS3
Ease into HTML5 and CSS3Ease into HTML5 and CSS3
Ease into HTML5 and CSS3
Brian Moon
 
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
 
Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)
Nicholas Zakas
 
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Nicholas Zakas
 
Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.
GaziAhsan
 
CSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondCSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to Respond
Denise Jacobs
 
Advancio, Inc. Academy: Responsive Web Design
Advancio, Inc. Academy: Responsive Web DesignAdvancio, Inc. Academy: Responsive Web Design
Advancio, Inc. Academy: Responsive Web Design
Advancio
 
MW2011 Grid-based Web Design presentation
MW2011 Grid-based Web Design presentationMW2011 Grid-based Web Design presentation
MW2011 Grid-based Web Design presentation
Charlie Moad
 

More from Zoe Gillenwater (20)

Show vs. Tell in UX Design (Front in Amsterdam)
Show vs. Tell in UX Design (Front in Amsterdam)Show vs. Tell in UX Design (Front in Amsterdam)
Show vs. Tell in UX Design (Front in Amsterdam)
Zoe Gillenwater
 
Enhancing Responsiveness with Flexbox (CSS Conf EU 2015)
Enhancing Responsiveness with Flexbox (CSS Conf EU 2015)Enhancing Responsiveness with Flexbox (CSS Conf EU 2015)
Enhancing Responsiveness with Flexbox (CSS Conf EU 2015)
Zoe Gillenwater
 
Responsive Flexbox Inspiration (Responsive Day Out)
Responsive Flexbox Inspiration (Responsive Day Out)Responsive Flexbox Inspiration (Responsive Day Out)
Responsive Flexbox Inspiration (Responsive Day Out)
Zoe Gillenwater
 
Enhancing Responsiveness With Flexbox (CSS Day)
Enhancing Responsiveness With Flexbox (CSS Day)Enhancing Responsiveness With Flexbox (CSS Day)
Enhancing Responsiveness With Flexbox (CSS Day)
Zoe Gillenwater
 
CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)
Zoe Gillenwater
 
Enhancing Responsiveness With Flexbox (Smashing Conference)
Enhancing Responsiveness With Flexbox (Smashing Conference)Enhancing Responsiveness With Flexbox (Smashing Conference)
Enhancing Responsiveness With Flexbox (Smashing Conference)
Zoe Gillenwater
 
Enhancing Responsiveness with Flexbox (RWD Summit)
Enhancing Responsiveness with Flexbox (RWD Summit)Enhancing Responsiveness with Flexbox (RWD Summit)
Enhancing Responsiveness with Flexbox (RWD Summit)
Zoe Gillenwater
 
CSS Lessons Learned the Hard Way (Beyond Tellerand)
CSS Lessons Learned the Hard Way (Beyond Tellerand)CSS Lessons Learned the Hard Way (Beyond Tellerand)
CSS Lessons Learned the Hard Way (Beyond Tellerand)
Zoe Gillenwater
 
CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)
Zoe Gillenwater
 
Leveling Up With Flexbox (Smart Web Conference)
Leveling Up With Flexbox (Smart Web Conference)Leveling Up With Flexbox (Smart Web Conference)
Leveling Up With Flexbox (Smart Web Conference)
Zoe Gillenwater
 
Leveling Up with Flexbox (Smashing Conference)
Leveling Up with Flexbox (Smashing Conference)Leveling Up with Flexbox (Smashing Conference)
Leveling Up with Flexbox (Smashing Conference)
Zoe Gillenwater
 
Just One (CSS Dev Conference keynote)
Just One (CSS Dev Conference keynote)Just One (CSS Dev Conference keynote)
Just One (CSS Dev Conference keynote)
Zoe Gillenwater
 
Putting Flexbox into Practice (Fronteers)
Putting Flexbox into Practice (Fronteers)Putting Flexbox into Practice (Fronteers)
Putting Flexbox into Practice (Fronteers)
Zoe Gillenwater
 
Putting Flexbox into Practice
Putting Flexbox into PracticePutting Flexbox into Practice
Putting Flexbox into Practice
Zoe Gillenwater
 
CSS3 Layout
CSS3 LayoutCSS3 Layout
CSS3 Layout
Zoe Gillenwater
 
Building Responsive Layouts
Building Responsive LayoutsBuilding Responsive Layouts
Building Responsive Layouts
Zoe Gillenwater
 
The Future of CSS Layout
The Future of CSS LayoutThe Future of CSS Layout
The Future of CSS Layout
Zoe Gillenwater
 
Building Responsive Layouts
Building Responsive LayoutsBuilding Responsive Layouts
Building Responsive Layouts
Zoe Gillenwater
 
Web Accessibility
Web AccessibilityWeb Accessibility
Web Accessibility
Zoe Gillenwater
 
Highly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSSHighly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSS
Zoe Gillenwater
 
Show vs. Tell in UX Design (Front in Amsterdam)
Show vs. Tell in UX Design (Front in Amsterdam)Show vs. Tell in UX Design (Front in Amsterdam)
Show vs. Tell in UX Design (Front in Amsterdam)
Zoe Gillenwater
 
Enhancing Responsiveness with Flexbox (CSS Conf EU 2015)
Enhancing Responsiveness with Flexbox (CSS Conf EU 2015)Enhancing Responsiveness with Flexbox (CSS Conf EU 2015)
Enhancing Responsiveness with Flexbox (CSS Conf EU 2015)
Zoe Gillenwater
 
Responsive Flexbox Inspiration (Responsive Day Out)
Responsive Flexbox Inspiration (Responsive Day Out)Responsive Flexbox Inspiration (Responsive Day Out)
Responsive Flexbox Inspiration (Responsive Day Out)
Zoe Gillenwater
 
Enhancing Responsiveness With Flexbox (CSS Day)
Enhancing Responsiveness With Flexbox (CSS Day)Enhancing Responsiveness With Flexbox (CSS Day)
Enhancing Responsiveness With Flexbox (CSS Day)
Zoe Gillenwater
 
CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)
Zoe Gillenwater
 
Enhancing Responsiveness With Flexbox (Smashing Conference)
Enhancing Responsiveness With Flexbox (Smashing Conference)Enhancing Responsiveness With Flexbox (Smashing Conference)
Enhancing Responsiveness With Flexbox (Smashing Conference)
Zoe Gillenwater
 
Enhancing Responsiveness with Flexbox (RWD Summit)
Enhancing Responsiveness with Flexbox (RWD Summit)Enhancing Responsiveness with Flexbox (RWD Summit)
Enhancing Responsiveness with Flexbox (RWD Summit)
Zoe Gillenwater
 
CSS Lessons Learned the Hard Way (Beyond Tellerand)
CSS Lessons Learned the Hard Way (Beyond Tellerand)CSS Lessons Learned the Hard Way (Beyond Tellerand)
CSS Lessons Learned the Hard Way (Beyond Tellerand)
Zoe Gillenwater
 
CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)
Zoe Gillenwater
 
Leveling Up With Flexbox (Smart Web Conference)
Leveling Up With Flexbox (Smart Web Conference)Leveling Up With Flexbox (Smart Web Conference)
Leveling Up With Flexbox (Smart Web Conference)
Zoe Gillenwater
 
Leveling Up with Flexbox (Smashing Conference)
Leveling Up with Flexbox (Smashing Conference)Leveling Up with Flexbox (Smashing Conference)
Leveling Up with Flexbox (Smashing Conference)
Zoe Gillenwater
 
Just One (CSS Dev Conference keynote)
Just One (CSS Dev Conference keynote)Just One (CSS Dev Conference keynote)
Just One (CSS Dev Conference keynote)
Zoe Gillenwater
 
Putting Flexbox into Practice (Fronteers)
Putting Flexbox into Practice (Fronteers)Putting Flexbox into Practice (Fronteers)
Putting Flexbox into Practice (Fronteers)
Zoe Gillenwater
 
Putting Flexbox into Practice
Putting Flexbox into PracticePutting Flexbox into Practice
Putting Flexbox into Practice
Zoe Gillenwater
 
Building Responsive Layouts
Building Responsive LayoutsBuilding Responsive Layouts
Building Responsive Layouts
Zoe Gillenwater
 
The Future of CSS Layout
The Future of CSS LayoutThe Future of CSS Layout
The Future of CSS Layout
Zoe Gillenwater
 
Building Responsive Layouts
Building Responsive LayoutsBuilding Responsive Layouts
Building Responsive Layouts
Zoe Gillenwater
 
Highly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSSHighly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSS
Zoe Gillenwater
 

Recently uploaded (20)

Seven Park Residences, Hallandale Beach.
Seven Park Residences, Hallandale Beach.Seven Park Residences, Hallandale Beach.
Seven Park Residences, Hallandale Beach.
TAMZ
 
Auslogics Disk Defrag Pro 10.0.0.1 Crack + Key Download [Latest]
Auslogics Disk Defrag Pro 10.0.0.1 Crack + Key Download [Latest]Auslogics Disk Defrag Pro 10.0.0.1 Crack + Key Download [Latest]
Auslogics Disk Defrag Pro 10.0.0.1 Crack + Key Download [Latest]
Developer
 
Minahil Mushtaq's Creative Portfolio 2024
Minahil Mushtaq's Creative Portfolio 2024Minahil Mushtaq's Creative Portfolio 2024
Minahil Mushtaq's Creative Portfolio 2024
MinahilMushtaq2
 
Homedecor Furniture Warehouse presentation
Homedecor Furniture Warehouse presentationHomedecor Furniture Warehouse presentation
Homedecor Furniture Warehouse presentation
Home Decor
 
Global Audience and Game Economy Design - The Journey of Digital Games around...
Global Audience and Game Economy Design - The Journey of Digital Games around...Global Audience and Game Economy Design - The Journey of Digital Games around...
Global Audience and Game Economy Design - The Journey of Digital Games around...
Alireza Ranjbar SHourabi
 
Scrivener 3.1.0.0 Crack + Keygen Full Version Download 2025
Scrivener 3.1.0.0 Crack + Keygen Full Version Download 2025Scrivener 3.1.0.0 Crack + Keygen Full Version Download 2025
Scrivener 3.1.0.0 Crack + Keygen Full Version Download 2025
Designer
 
Stardock WindowBlinds 10.85 Crack Full Version 2025
Stardock WindowBlinds 10.85 Crack Full Version 2025Stardock WindowBlinds 10.85 Crack Full Version 2025
Stardock WindowBlinds 10.85 Crack Full Version 2025
Google
 
Total Uninstall Pro 7 Crack Free Download [Latest]
Total Uninstall Pro 7 Crack Free Download [Latest]Total Uninstall Pro 7 Crack Free Download [Latest]
Total Uninstall Pro 7 Crack Free Download [Latest]
Designer
 
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
Designer
 
Icecream Screen Recorder Pro 6.25 Full Crack + Key 2025
Icecream Screen Recorder Pro 6.25 Full Crack + Key 2025Icecream Screen Recorder Pro 6.25 Full Crack + Key 2025
Icecream Screen Recorder Pro 6.25 Full Crack + Key 2025
Yahoo
 
PowerISO Crack 9.0 + Serial Key Free Download 2025
PowerISO Crack 9.0 + Serial Key Free Download 2025PowerISO Crack 9.0 + Serial Key Free Download 2025
PowerISO Crack 9.0 + Serial Key Free Download 2025
Mudasir
 
Beyond Compare 4.4.0.25886 Crack + License Key 2025
Beyond Compare 4.4.0.25886 Crack + License Key 2025Beyond Compare 4.4.0.25886 Crack + License Key 2025
Beyond Compare 4.4.0.25886 Crack + License Key 2025
Designer
 
Supplier Sourcing Sample Work of Maisie.pdf
Supplier Sourcing Sample Work of Maisie.pdfSupplier Sourcing Sample Work of Maisie.pdf
Supplier Sourcing Sample Work of Maisie.pdf
MelissaMaisieVillanu
 
Verayouth Chotivanich Portfolio
Verayouth Chotivanich PortfolioVerayouth Chotivanich Portfolio
Verayouth Chotivanich Portfolio
Verayouth Chotivanich
 
FonePaw Data Recovery 2.6.0 Crack Full Version [Latest]
FonePaw Data Recovery 2.6.0 Crack Full Version [Latest]FonePaw Data Recovery 2.6.0 Crack Full Version [Latest]
FonePaw Data Recovery 2.6.0 Crack Full Version [Latest]
Google
 
Xiaomi Flash Tool Free Download 2025 for All Versions
Xiaomi Flash Tool Free Download 2025 for All VersionsXiaomi Flash Tool Free Download 2025 for All Versions
Xiaomi Flash Tool Free Download 2025 for All Versions
Designer
 
FontLab 7.2.0.7608 with Crack Free Download [Latest Version]
FontLab 7.2.0.7608 with Crack Free Download [Latest Version]FontLab 7.2.0.7608 with Crack Free Download [Latest Version]
FontLab 7.2.0.7608 with Crack Free Download [Latest Version]
Yahoo
 
Movavi Video Suite 22.0.1 Crack + Activation Key 2025
Movavi Video Suite 22.0.1 Crack + Activation Key 2025Movavi Video Suite 22.0.1 Crack + Activation Key 2025
Movavi Video Suite 22.0.1 Crack + Activation Key 2025
Designer
 
internship project company portable document
internship project company portable documentinternship project company portable document
internship project company portable document
MytecEnter
 
All Lectures DECO1006 and DECO2016 in 2025.pdf
All Lectures DECO1006 and DECO2016 in 2025.pdfAll Lectures DECO1006 and DECO2016 in 2025.pdf
All Lectures DECO1006 and DECO2016 in 2025.pdf
R. Sosa
 
Seven Park Residences, Hallandale Beach.
Seven Park Residences, Hallandale Beach.Seven Park Residences, Hallandale Beach.
Seven Park Residences, Hallandale Beach.
TAMZ
 
Auslogics Disk Defrag Pro 10.0.0.1 Crack + Key Download [Latest]
Auslogics Disk Defrag Pro 10.0.0.1 Crack + Key Download [Latest]Auslogics Disk Defrag Pro 10.0.0.1 Crack + Key Download [Latest]
Auslogics Disk Defrag Pro 10.0.0.1 Crack + Key Download [Latest]
Developer
 
Minahil Mushtaq's Creative Portfolio 2024
Minahil Mushtaq's Creative Portfolio 2024Minahil Mushtaq's Creative Portfolio 2024
Minahil Mushtaq's Creative Portfolio 2024
MinahilMushtaq2
 
Homedecor Furniture Warehouse presentation
Homedecor Furniture Warehouse presentationHomedecor Furniture Warehouse presentation
Homedecor Furniture Warehouse presentation
Home Decor
 
Global Audience and Game Economy Design - The Journey of Digital Games around...
Global Audience and Game Economy Design - The Journey of Digital Games around...Global Audience and Game Economy Design - The Journey of Digital Games around...
Global Audience and Game Economy Design - The Journey of Digital Games around...
Alireza Ranjbar SHourabi
 
Scrivener 3.1.0.0 Crack + Keygen Full Version Download 2025
Scrivener 3.1.0.0 Crack + Keygen Full Version Download 2025Scrivener 3.1.0.0 Crack + Keygen Full Version Download 2025
Scrivener 3.1.0.0 Crack + Keygen Full Version Download 2025
Designer
 
Stardock WindowBlinds 10.85 Crack Full Version 2025
Stardock WindowBlinds 10.85 Crack Full Version 2025Stardock WindowBlinds 10.85 Crack Full Version 2025
Stardock WindowBlinds 10.85 Crack Full Version 2025
Google
 
Total Uninstall Pro 7 Crack Free Download [Latest]
Total Uninstall Pro 7 Crack Free Download [Latest]Total Uninstall Pro 7 Crack Free Download [Latest]
Total Uninstall Pro 7 Crack Free Download [Latest]
Designer
 
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
WinX HD Video Converter Deluxe 5.16.7.342 Crack + Key [Latest]
Designer
 
Icecream Screen Recorder Pro 6.25 Full Crack + Key 2025
Icecream Screen Recorder Pro 6.25 Full Crack + Key 2025Icecream Screen Recorder Pro 6.25 Full Crack + Key 2025
Icecream Screen Recorder Pro 6.25 Full Crack + Key 2025
Yahoo
 
PowerISO Crack 9.0 + Serial Key Free Download 2025
PowerISO Crack 9.0 + Serial Key Free Download 2025PowerISO Crack 9.0 + Serial Key Free Download 2025
PowerISO Crack 9.0 + Serial Key Free Download 2025
Mudasir
 
Beyond Compare 4.4.0.25886 Crack + License Key 2025
Beyond Compare 4.4.0.25886 Crack + License Key 2025Beyond Compare 4.4.0.25886 Crack + License Key 2025
Beyond Compare 4.4.0.25886 Crack + License Key 2025
Designer
 
Supplier Sourcing Sample Work of Maisie.pdf
Supplier Sourcing Sample Work of Maisie.pdfSupplier Sourcing Sample Work of Maisie.pdf
Supplier Sourcing Sample Work of Maisie.pdf
MelissaMaisieVillanu
 
FonePaw Data Recovery 2.6.0 Crack Full Version [Latest]
FonePaw Data Recovery 2.6.0 Crack Full Version [Latest]FonePaw Data Recovery 2.6.0 Crack Full Version [Latest]
FonePaw Data Recovery 2.6.0 Crack Full Version [Latest]
Google
 
Xiaomi Flash Tool Free Download 2025 for All Versions
Xiaomi Flash Tool Free Download 2025 for All VersionsXiaomi Flash Tool Free Download 2025 for All Versions
Xiaomi Flash Tool Free Download 2025 for All Versions
Designer
 
FontLab 7.2.0.7608 with Crack Free Download [Latest Version]
FontLab 7.2.0.7608 with Crack Free Download [Latest Version]FontLab 7.2.0.7608 with Crack Free Download [Latest Version]
FontLab 7.2.0.7608 with Crack Free Download [Latest Version]
Yahoo
 
Movavi Video Suite 22.0.1 Crack + Activation Key 2025
Movavi Video Suite 22.0.1 Crack + Activation Key 2025Movavi Video Suite 22.0.1 Crack + Activation Key 2025
Movavi Video Suite 22.0.1 Crack + Activation Key 2025
Designer
 
internship project company portable document
internship project company portable documentinternship project company portable document
internship project company portable document
MytecEnter
 
All Lectures DECO1006 and DECO2016 in 2025.pdf
All Lectures DECO1006 and DECO2016 in 2025.pdfAll Lectures DECO1006 and DECO2016 in 2025.pdf
All Lectures DECO1006 and DECO2016 in 2025.pdf
R. Sosa
 

Real-world CSS3

  • 1. Real-world CSS3 January 25, 2011 CSS3 book launch Zoe Mickley Gillenwater @zomigi
  • 2. What I do Books Web new Stunning CSS3: Accessibility A Project-based Guide to specialist for AT&T the Latest in CSS Web design/CSS www.stunningcss3.com consultant Member of Adobe Dec '08 Flexible Web Design: Task Force for WaSP Creating Liquid and Elastic Layouts with CSS www.flexiblewebbook.com 2
  • 3. Is it ready yet? Photo by U.S. Department of Agriculture, www.flickr.com/photos/usdagov/5201431107/ 3
  • 5. Don't wait for “recommendation” 5
  • 6. Use the parts of CSS3 that: ✔ have generally stable syntax. ✔ have good support. ✔ don't harm non-supporting browsers by their lack. 6
  • 9. Enhancement failure RGBA/HSLA in Firefox RGBA/HSLA in IE 8 9
  • 10. A few of the things you can use... Photo by Kristin Roach, www.flickr.com/photos/kristinroach/3995676135 10
  • 11. Go forth and style Safe when used Use a little more wisely cautiously border-radius transforms box-shadow gradients text-shadow animations multiple backgrounds HSLA (or RGBA if youyourself) things hard on like to make border-image new selectors box-sizing transitions @font-face media queries 11
  • 12. Benefits of CSS3 (besides looking cool) Decrease Increase development time usability maintenance time accessibility page loading time adaptability across devices search engine placement 12
  • 13. Reduced development and maintenance time • Fewer images, Flash, JavaScript • Streamlined markup 13
  • 14. Increased page performance • Smaller file sizes • Fewer HTTP requests Reducing the number of HTTP requests…is the most important guideline for improving performance for first time visitors. Yahoo! Exceptional Performance Team, http://developer.yahoo.com/performance/rules.html 14
  • 15. Better search engine placement • Google uses speed as ranking factor • Real text instead of image or Flash text 15
  • 16. Increased usability • Real text • Optimized styles based on device capabilities 16
  • 18. Before CSS3 FF 3.6 IE 8 IE 6 HTTP requests 36 37 47 Loading time seconds 1.5 1.3 3 18
  • 19. The nav bar Before: 8 images inactive hovered current page indicator 19
  • 20. The nav bar Before: 8 images inactive hovered current page indicator After: 1 image 20
  • 21. Before CSS3, optimized FF 3.6 IE 8 IE 6 HTTP requests 29 30 33 Loading time seconds 1.3 1.15 2 decrease 13% 11% 33% 21
  • 22. After CSS3 FF 3.6 IE 8 IE 6 HTTP requests 22 23 24 Loading time seconds 1.1 1 1.5 decrease 15% 13% 25% 22
  • 23. IE 9 beta 23
  • 24. IE 8 24
  • 25. IE 6 25
  • 26. Wrapping tabs Larger text + narrow window = ugly Amazon double-row tabs from 2000 26
  • 27. Media query for nav bar @media all and (max-width:52em) { English translation: #swoosh { display: none; } Up to a maximum #mainnav { padding: 8px 0; } width of 52 ems, use #mainnav ul { margin: 0; } #mainnav li { these styles. Once you margin-left: 12px; get past 52 ems, use padding: 0; the regular styles. border: none; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; background: none; } #mainnav li:hover { background: none; } } 27
  • 28. Media queries separated <link rel="stylesheet" href="main.css"> <link rel="stylesheet" href="narrow.css" media="only screen and (max-width:52em)"> 28
  • 29. IE support Make it work in IE 5-8 with JavaScript http://code.google.com/p/css3-mediaqueries-js/ <!--[if lte IE 8]> <script src="css3-mediaqueries.js"></script> <![endif]--> 29
  • 30. Media queries for mobile min-width max-width device-width min-device-width max-device-width orientation -webkit-min-device-pixel-ratio 30
  • 31. Targeting iPhone, Android, etc. @media screen and portrait & landscape (min-width: 320px) and (max-width: 480px) portrait & landscape (min-device-width: 320px) and (max-device-width: 480px) portrait & landscape (max-device-width: 480px) landscape only (min-width: 321px) portrait only (max-width: 320px) 31
  • 32. Targeting iPad @media screen and portrait & landscape (min-device-width: 768px) and (max-device-width: 1024px) landscape only (min-width: 769px) landscape only (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) portrait only (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: portrait) 32
  • 33. Viewport meta tag Forces mobile devices to scale viewport to actual device width <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> 33
  • 34. Closer look: tabs • border-radius for rounded corners on top only • HSLA semitransparent white gradient for background 34
  • 35. Closer look: multiple columns • column-count on paragraph to set number of columns with variable width • column-gap to control gutter width 35
  • 36. Closer look: deals badge • width/height set in ems • border-radius set to half width/height to make circle • green dashed border is actual border; white solid border is hard- edged box-shadow • second fuzzy gray box-shadow beneath 36
  • 37. Learn more Download slides, get links: www.zomigi.com/blog/css3-book-launch-event/ Stunning CSS3 book: www.stunningcss3.com Zoe Mickley Gillenwater @zomigi design@zomigi.com www.zomigi.com 37