SlideShare ist ein Scribd-Unternehmen logo
1 von 22
Dennis Slade 
CSS Eye for the 
Programmer Guy 
The San Diego PHP Meetup
Who Am I? 
❖ Dennis Slade Jr. 
tennisbear@gmail.com 
❖ 20+ years experience 
implementing and supporting 
critical web and desktop 
business systems 
❖ 12+ years hands-on experience 
with *AMP web development 
projects (PHP on Linux & OS X) 
❖ 14+ years experience in 
software support and training
Why This Presentation? 
I recently ran across this Google I/O presentation from a few years 
back. The presentation made me realize that I wasn’t yet leveraging 
CSS3 and HTML5 functionalities which are now in widespread usage, 
and which could save me time and headaches in my coding projects. 
I refreshed my knowledge in these areas and I thought you might like 
to as well. 
❖ See: Google I/O 2012 - The Web Can Do That!?
What We’ll Be Covering 
❖ Better forms with CSS styling and HTML5 
validation 
❖ Semantic tags to improve page 
organization, SEO, and accessibility 
❖ Introductory regions and flexbox 
❖ Basic fancy effects (No JavaScript 
required)
What We Won’t Be Covering 
❖ Bootstrap 
❖ Less 
❖ Sass 
❖ Modernizr 
❖ jQuery 
❖ Advanced filter and transform effects
Before We Begin 
❖ Checking which browsers support which CSS3/HTML5 
features: caniuse.com 
❖ CSS Lint for analyzing problems: csslint.net 
❖ CodePen for trying stuff out: codepen.io
CSS Organization Basics 
❖ Use classes rather than element ids whenever possible. 
❖ Use style attributes only as a last resort. 
❖ Include files rather than inline except when CSS is needed in 
emails. 
❖ Use <link> tags instead of @import because of performance 
issues. 
❖ Here’s much, much more on organizing your CSS: 
engineering.appfolio.com/2012/11/16/css-architecture/ (thanks for 
the link @step_hane)
Forms: CSS styling, HTML5 
validation
For Forms You Can Style Anything 
❖ Selectors can be applied by input type: 
❖ .dashboard-edit-form input[type="text"] { margin-top:4px; } 
.dashboard-edit-form input[type="url"].uri { width:85%; } 
.dashboard-edit-form input[type="text"].name { width:80%; } 
.dashboard-edit-form input[type="file"].upload 
{ 
margin-left:0.5em; margin-top:7px; margin-bottom:16px; 
} 
❖ .dashboard-edit-form input[type="text"].location { width:60%; } 
.dashboard-edit-form select.status { float:left; margin-top:16px; } 
.dashboard-edit-form textarea.description, 
.dashboard-edit-form textarea.notes 
{ 
width:75%; height:200px; margin-top:7px; 
} 
.dashboard-edit-form textarea.notes { height:60px; } 
.detail-form input[type=“checkbox"].search { margin:9px; } 
.detail-form input[type=“email"].search { margin:inherit; }
Input Validation 
❖ It’s not just text anymore. Try: 
date, time, email, url, number, tel, range 
❖ Validation with min, max, step, pattern 
❖ Required for form fields is lovely… except in mobile and 
desktop Safari 
❖ Don’t forget <label> for form field navigation and screen 
reader accessibility. (example in CodePen)
Poor Man’s Responsive 
Forms 
body { font-size:14pt; } 
section { font-size:0.9em; } 
.sign-up-main-content, 
.sign-up-information 
{ 
font-size:0.8em; 
} 
.sign-up-complete { padding:0% 10%; } 
.sign-up-complete .buttons 
{ 
margin:80px 0px 0px 0px; 
} 
.talent-network-join { width:640px; } 
.talent-network-join .buttons 
{ 
padding:5px; 
} 
.copyright-only { display:none; } 
.standard-links { display:block; } 
@media screen and (max-device-width: 960px) 
{ 
body { font-size:36pt; } 
.sign-up-complete { padding:0; } 
.sign-up-complete .buttons 
{ 
margin-left:5px; 
} 
.talent-network-join { width:94%; } 
.talent-network-join .buttons 
{ 
padding:0; 
} 
.copyright-only { display:block; } 
.standard-links { display:none; } 
}
Semantic Tags for 
SEO & 
Accessibility
Use Semantic Tags 
❖ Your pages can use HTML5 semantic tags like: 
❖ <section> 
❖ <header>, <footer> 
❖ <nav>, <aside>, <article> 
❖ Use older HTML tags like <p>, <div>, <ul> within 
the semantic tag blocks (example in CodePen)
Use Semantic Tags 
❖ Improves overall SEO of public pages since search engine crawlers 
can easily discern the important content on the page. 
❖ See: searchengineland.com/2014-seo-roadmap-semantic-markup- 
177798 
❖ Much better for accessibility than the original div/p paradigm. Screen 
readers in particular use semantic tags to facilitate the browsing 
experience for the visually impaired 
❖ See: clarissapeterson.com/2012/11/html5-accessibility/
Poking the (flex)Box
What Is Flexbox? 
❖ The Flexbox Layout (Flexible Box or just Flexbox) module 
aims at providing a more efficient way to lay out, align and 
distribute space among items in a container, even when 
their size is unknown and/or dynamic. 
❖ Flexbox is intended to replace floats and the Box model 
which we’ve had to deal with for far too long. 
❖ There is fairly widespread support for Flexbox. IE has 
recently adopted it (previously the Grid Layout model was 
the only alternative to the Box model).
Flexbox Features 
❖ Align block elements within other blocks with easy 
spacing and justification. 
❖ Block elements height and width can be easily 
synchronized. 
❖ The order of elements can be changed via CSS without 
calls to the Apache/backend server or JavaScript. 
❖ See css-tricks.com/snippets/css/a-guide-to-flexbox/
Basic Fancy Effects 
(No JavaScript 
Required)
Regions, Transforms & Animation 
❖ Transforms 
❖ Mozilla: CSS Transforms doc 
❖ Mozilla: Using CSS transforms 
❖ Animation 
❖ Mozilla: Using CSS animations with nice live examples 
❖ Transforms with Regions 
❖ A flippable book using CSS Regions and 3D transforms
Links, Etc. 
❖ Video: Google I/O 2012 - The Web Can Do That!? 
❖ Video: Create a Responsive Website Using HTML5 and 
CSS3 
❖ A Complete Guide to Flexbox 
❖ W3C: Advanced CSS selectors 
❖ As mentioned before: caniuse.com
Notes 
❖ CSS variables aren’t yet widely adopted. When they are, they 
might look something like this. 
❖ I used to love using the text-to-speech attribute in WebKit. But 
sadly that’s deprecated now for security reasons. *sniffle* 
❖ This presentation was originally titled “CSS Eye for the PHP Guy” 
but I changed it to “Programmer Guy” after I realized there was no 
actual PHP code in the presentation. 
❖ Photo credits: (c) 2014 by Me, all from from my recent honeymoon 
in Italy. And yes, the Leaning Tower pic in the next slide is totally 
real, no photo editing at all...
My Contact Info 
❖ Dennis Slade Jr. 
❖ tennisbear@gmail.com 
❖ dennissladejr@gmail.com 
❖ @DennisSladeJr 
❖ linkedin.com/in/dennissladejr

Weitere ähnliche Inhalte

Was ist angesagt?

Web Development In 2018
Web Development In 2018Web Development In 2018
Web Development In 2018Traversy Media
 
Week1 Dreamweaver and Server
Week1 Dreamweaver and ServerWeek1 Dreamweaver and Server
Week1 Dreamweaver and ServerRowena LI
 
Introduction to web development
Introduction to web developmentIntroduction to web development
Introduction to web developmentRIAH ENCARNACION
 
Word press development for non developers
Word press development for non developers Word press development for non developers
Word press development for non developers Jessica C. Gardner
 
Introduction to web development
Introduction to web developmentIntroduction to web development
Introduction to web developmentAlberto Apellidos
 
Web Fundamentals Crash Course
Web Fundamentals Crash CourseWeb Fundamentals Crash Course
Web Fundamentals Crash CourseMrAbas
 
Best Web Designing Courses- Classes in Pune | Web Designing Training in pune ...
Best Web Designing Courses- Classes in Pune | Web Designing Training in pune ...Best Web Designing Courses- Classes in Pune | Web Designing Training in pune ...
Best Web Designing Courses- Classes in Pune | Web Designing Training in pune ...Mukeshkumar Prajapati
 
Backend & Frontend architecture scalability & websockets
Backend & Frontend architecture scalability & websocketsBackend & Frontend architecture scalability & websockets
Backend & Frontend architecture scalability & websocketsAnne Jan Brouwer
 
Web Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptWeb Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptEdureka!
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSSTodd Anglin
 
Building the next generation of browser apps today
Building the next generation of browser apps todayBuilding the next generation of browser apps today
Building the next generation of browser apps todayRandy Williams
 
IV - CSS architecture
IV - CSS architectureIV - CSS architecture
IV - CSS architectureWebF
 
Why You Need a Front End Developer
Why You Need a Front End DeveloperWhy You Need a Front End Developer
Why You Need a Front End DeveloperMike Wilcox
 
How to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy StepsHow to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy StepsSingsys Pte Ltd
 

Was ist angesagt? (20)

Web Development
Web DevelopmentWeb Development
Web Development
 
Web Development In 2018
Web Development In 2018Web Development In 2018
Web Development In 2018
 
Week1 Dreamweaver and Server
Week1 Dreamweaver and ServerWeek1 Dreamweaver and Server
Week1 Dreamweaver and Server
 
Introduction to web development
Introduction to web developmentIntroduction to web development
Introduction to web development
 
Word press development for non developers
Word press development for non developers Word press development for non developers
Word press development for non developers
 
Introduction to web development
Introduction to web developmentIntroduction to web development
Introduction to web development
 
Web Fundamentals Crash Course
Web Fundamentals Crash CourseWeb Fundamentals Crash Course
Web Fundamentals Crash Course
 
Best Web Designing Courses- Classes in Pune | Web Designing Training in pune ...
Best Web Designing Courses- Classes in Pune | Web Designing Training in pune ...Best Web Designing Courses- Classes in Pune | Web Designing Training in pune ...
Best Web Designing Courses- Classes in Pune | Web Designing Training in pune ...
 
Aside, within HTML5 + CSS
Aside, within HTML5 + CSSAside, within HTML5 + CSS
Aside, within HTML5 + CSS
 
Backend & Frontend architecture scalability & websockets
Backend & Frontend architecture scalability & websocketsBackend & Frontend architecture scalability & websockets
Backend & Frontend architecture scalability & websockets
 
Web Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptWeb Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScript
 
WEB DESIGNING
WEB DESIGNINGWEB DESIGNING
WEB DESIGNING
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSS
 
Building the next generation of browser apps today
Building the next generation of browser apps todayBuilding the next generation of browser apps today
Building the next generation of browser apps today
 
WEB DESIGN
WEB DESIGNWEB DESIGN
WEB DESIGN
 
IV - CSS architecture
IV - CSS architectureIV - CSS architecture
IV - CSS architecture
 
Why You Need a Front End Developer
Why You Need a Front End DeveloperWhy You Need a Front End Developer
Why You Need a Front End Developer
 
How to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy StepsHow to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy Steps
 
Web designing
Web designingWeb designing
Web designing
 
Front-End Development
Front-End DevelopmentFront-End Development
Front-End Development
 

Andere mochten auch

Tech. and Social Studies
Tech. and Social StudiesTech. and Social Studies
Tech. and Social Studiesjake4
 
Mikroökonoomika ainekava
Mikroökonoomika ainekavaMikroökonoomika ainekava
Mikroökonoomika ainekavaMartin Sillaots
 
Las Tic Y La Sociedad
Las Tic Y La SociedadLas Tic Y La Sociedad
Las Tic Y La Sociedading_ebeltran
 
2013-08 Raleigh ISSA Chapter Updates August 2013
2013-08 Raleigh ISSA Chapter Updates August 20132013-08 Raleigh ISSA Chapter Updates August 2013
2013-08 Raleigh ISSA Chapter Updates August 2013Raleigh ISSA
 

Andere mochten auch (6)

Tech. and Social Studies
Tech. and Social StudiesTech. and Social Studies
Tech. and Social Studies
 
Landing Your Next PHP Job
Landing Your Next PHP JobLanding Your Next PHP Job
Landing Your Next PHP Job
 
Mikroökonoomika ainekava
Mikroökonoomika ainekavaMikroökonoomika ainekava
Mikroökonoomika ainekava
 
Las Tic Y La Sociedad
Las Tic Y La SociedadLas Tic Y La Sociedad
Las Tic Y La Sociedad
 
Ie2013 slide show
Ie2013 slide showIe2013 slide show
Ie2013 slide show
 
2013-08 Raleigh ISSA Chapter Updates August 2013
2013-08 Raleigh ISSA Chapter Updates August 20132013-08 Raleigh ISSA Chapter Updates August 2013
2013-08 Raleigh ISSA Chapter Updates August 2013
 

Ähnlich wie CSS Eye for the Programmer Guy

GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1Heather Rock
 
Maximising Online Resource Effectiveness Workshop Session 3/8 Priority issues
Maximising Online Resource Effectiveness Workshop Session 3/8 Priority issuesMaximising Online Resource Effectiveness Workshop Session 3/8 Priority issues
Maximising Online Resource Effectiveness Workshop Session 3/8 Priority issuesPlatypus
 
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 Evan Mullins
 
Internship review
Internship reviewInternship review
Internship reviewPAWAN KUMAR
 
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!Evan Mullins
 
Overview of Web Technology Intro
Overview of Web Technology Intro Overview of Web Technology Intro
Overview of Web Technology Intro webhostingguy
 
Designing SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessDesigning SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessKanwal Khipple
 
It's a Mod World - A Practical Guide to Rocking Modernizr
It's a Mod World - A Practical Guide to Rocking ModernizrIt's a Mod World - A Practical Guide to Rocking Modernizr
It's a Mod World - A Practical Guide to Rocking ModernizrMichael Enslow
 
Familiar Tools, New Possibilities: Leveraging the Power of the Adobe Web Pub...
Familiar Tools, New Possibilities:  Leveraging the Power of the Adobe Web Pub...Familiar Tools, New Possibilities:  Leveraging the Power of the Adobe Web Pub...
Familiar Tools, New Possibilities: Leveraging the Power of the Adobe Web Pub...John Hartley
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentEvan Mullins
 
No Feature Solutions with SharePoint
No Feature Solutions with SharePointNo Feature Solutions with SharePoint
No Feature Solutions with SharePointmikehuguet
 
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptxINDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx12KritiGaneriwal
 
Websites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly WebsitesWebsites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly Websiteswebsiteunlimited
 
Theming websites effortlessly with Deliverance (CMSExpo 2010)
Theming websites effortlessly with Deliverance (CMSExpo 2010)Theming websites effortlessly with Deliverance (CMSExpo 2010)
Theming websites effortlessly with Deliverance (CMSExpo 2010)Jazkarta, Inc.
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksAndolasoft Inc
 

Ähnlich wie CSS Eye for the Programmer Guy (20)

GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
 
Css group
Css groupCss group
Css group
 
Css group
Css groupCss group
Css group
 
Css group
Css groupCss group
Css group
 
Maximising Online Resource Effectiveness Workshop Session 3/8 Priority issues
Maximising Online Resource Effectiveness Workshop Session 3/8 Priority issuesMaximising Online Resource Effectiveness Workshop Session 3/8 Priority issues
Maximising Online Resource Effectiveness Workshop Session 3/8 Priority issues
 
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
 
Internship review
Internship reviewInternship review
Internship review
 
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
 
Overview of Web Technology Intro
Overview of Web Technology Intro Overview of Web Technology Intro
Overview of Web Technology Intro
 
Designing SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessDesigning SharePoint 2010 for Business
Designing SharePoint 2010 for Business
 
It's a Mod World - A Practical Guide to Rocking Modernizr
It's a Mod World - A Practical Guide to Rocking ModernizrIt's a Mod World - A Practical Guide to Rocking Modernizr
It's a Mod World - A Practical Guide to Rocking Modernizr
 
Familiar Tools, New Possibilities: Leveraging the Power of the Adobe Web Pub...
Familiar Tools, New Possibilities:  Leveraging the Power of the Adobe Web Pub...Familiar Tools, New Possibilities:  Leveraging the Power of the Adobe Web Pub...
Familiar Tools, New Possibilities: Leveraging the Power of the Adobe Web Pub...
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
 
No Feature Solutions with SharePoint
No Feature Solutions with SharePointNo Feature Solutions with SharePoint
No Feature Solutions with SharePoint
 
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptxINDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
 
Html5
Html5Html5
Html5
 
Basic web designing 2
Basic web designing 2Basic web designing 2
Basic web designing 2
 
Websites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly WebsitesWebsites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly Websites
 
Theming websites effortlessly with Deliverance (CMSExpo 2010)
Theming websites effortlessly with Deliverance (CMSExpo 2010)Theming websites effortlessly with Deliverance (CMSExpo 2010)
Theming websites effortlessly with Deliverance (CMSExpo 2010)
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS Tricks
 

Kürzlich hochgeladen

10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
SHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationSHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationShrmpro
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...SelfMade bd
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionOnePlan Solutions
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...Nitya salvi
 

Kürzlich hochgeladen (20)

10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
SHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationSHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions Presentation
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
 

CSS Eye for the Programmer Guy

  • 1. Dennis Slade CSS Eye for the Programmer Guy The San Diego PHP Meetup
  • 2. Who Am I? ❖ Dennis Slade Jr. tennisbear@gmail.com ❖ 20+ years experience implementing and supporting critical web and desktop business systems ❖ 12+ years hands-on experience with *AMP web development projects (PHP on Linux & OS X) ❖ 14+ years experience in software support and training
  • 3. Why This Presentation? I recently ran across this Google I/O presentation from a few years back. The presentation made me realize that I wasn’t yet leveraging CSS3 and HTML5 functionalities which are now in widespread usage, and which could save me time and headaches in my coding projects. I refreshed my knowledge in these areas and I thought you might like to as well. ❖ See: Google I/O 2012 - The Web Can Do That!?
  • 4. What We’ll Be Covering ❖ Better forms with CSS styling and HTML5 validation ❖ Semantic tags to improve page organization, SEO, and accessibility ❖ Introductory regions and flexbox ❖ Basic fancy effects (No JavaScript required)
  • 5. What We Won’t Be Covering ❖ Bootstrap ❖ Less ❖ Sass ❖ Modernizr ❖ jQuery ❖ Advanced filter and transform effects
  • 6. Before We Begin ❖ Checking which browsers support which CSS3/HTML5 features: caniuse.com ❖ CSS Lint for analyzing problems: csslint.net ❖ CodePen for trying stuff out: codepen.io
  • 7. CSS Organization Basics ❖ Use classes rather than element ids whenever possible. ❖ Use style attributes only as a last resort. ❖ Include files rather than inline except when CSS is needed in emails. ❖ Use <link> tags instead of @import because of performance issues. ❖ Here’s much, much more on organizing your CSS: engineering.appfolio.com/2012/11/16/css-architecture/ (thanks for the link @step_hane)
  • 8. Forms: CSS styling, HTML5 validation
  • 9. For Forms You Can Style Anything ❖ Selectors can be applied by input type: ❖ .dashboard-edit-form input[type="text"] { margin-top:4px; } .dashboard-edit-form input[type="url"].uri { width:85%; } .dashboard-edit-form input[type="text"].name { width:80%; } .dashboard-edit-form input[type="file"].upload { margin-left:0.5em; margin-top:7px; margin-bottom:16px; } ❖ .dashboard-edit-form input[type="text"].location { width:60%; } .dashboard-edit-form select.status { float:left; margin-top:16px; } .dashboard-edit-form textarea.description, .dashboard-edit-form textarea.notes { width:75%; height:200px; margin-top:7px; } .dashboard-edit-form textarea.notes { height:60px; } .detail-form input[type=“checkbox"].search { margin:9px; } .detail-form input[type=“email"].search { margin:inherit; }
  • 10. Input Validation ❖ It’s not just text anymore. Try: date, time, email, url, number, tel, range ❖ Validation with min, max, step, pattern ❖ Required for form fields is lovely… except in mobile and desktop Safari ❖ Don’t forget <label> for form field navigation and screen reader accessibility. (example in CodePen)
  • 11. Poor Man’s Responsive Forms body { font-size:14pt; } section { font-size:0.9em; } .sign-up-main-content, .sign-up-information { font-size:0.8em; } .sign-up-complete { padding:0% 10%; } .sign-up-complete .buttons { margin:80px 0px 0px 0px; } .talent-network-join { width:640px; } .talent-network-join .buttons { padding:5px; } .copyright-only { display:none; } .standard-links { display:block; } @media screen and (max-device-width: 960px) { body { font-size:36pt; } .sign-up-complete { padding:0; } .sign-up-complete .buttons { margin-left:5px; } .talent-network-join { width:94%; } .talent-network-join .buttons { padding:0; } .copyright-only { display:block; } .standard-links { display:none; } }
  • 12. Semantic Tags for SEO & Accessibility
  • 13. Use Semantic Tags ❖ Your pages can use HTML5 semantic tags like: ❖ <section> ❖ <header>, <footer> ❖ <nav>, <aside>, <article> ❖ Use older HTML tags like <p>, <div>, <ul> within the semantic tag blocks (example in CodePen)
  • 14. Use Semantic Tags ❖ Improves overall SEO of public pages since search engine crawlers can easily discern the important content on the page. ❖ See: searchengineland.com/2014-seo-roadmap-semantic-markup- 177798 ❖ Much better for accessibility than the original div/p paradigm. Screen readers in particular use semantic tags to facilitate the browsing experience for the visually impaired ❖ See: clarissapeterson.com/2012/11/html5-accessibility/
  • 16. What Is Flexbox? ❖ The Flexbox Layout (Flexible Box or just Flexbox) module aims at providing a more efficient way to lay out, align and distribute space among items in a container, even when their size is unknown and/or dynamic. ❖ Flexbox is intended to replace floats and the Box model which we’ve had to deal with for far too long. ❖ There is fairly widespread support for Flexbox. IE has recently adopted it (previously the Grid Layout model was the only alternative to the Box model).
  • 17. Flexbox Features ❖ Align block elements within other blocks with easy spacing and justification. ❖ Block elements height and width can be easily synchronized. ❖ The order of elements can be changed via CSS without calls to the Apache/backend server or JavaScript. ❖ See css-tricks.com/snippets/css/a-guide-to-flexbox/
  • 18. Basic Fancy Effects (No JavaScript Required)
  • 19. Regions, Transforms & Animation ❖ Transforms ❖ Mozilla: CSS Transforms doc ❖ Mozilla: Using CSS transforms ❖ Animation ❖ Mozilla: Using CSS animations with nice live examples ❖ Transforms with Regions ❖ A flippable book using CSS Regions and 3D transforms
  • 20. Links, Etc. ❖ Video: Google I/O 2012 - The Web Can Do That!? ❖ Video: Create a Responsive Website Using HTML5 and CSS3 ❖ A Complete Guide to Flexbox ❖ W3C: Advanced CSS selectors ❖ As mentioned before: caniuse.com
  • 21. Notes ❖ CSS variables aren’t yet widely adopted. When they are, they might look something like this. ❖ I used to love using the text-to-speech attribute in WebKit. But sadly that’s deprecated now for security reasons. *sniffle* ❖ This presentation was originally titled “CSS Eye for the PHP Guy” but I changed it to “Programmer Guy” after I realized there was no actual PHP code in the presentation. ❖ Photo credits: (c) 2014 by Me, all from from my recent honeymoon in Italy. And yes, the Leaning Tower pic in the next slide is totally real, no photo editing at all...
  • 22. My Contact Info ❖ Dennis Slade Jr. ❖ tennisbear@gmail.com ❖ dennissladejr@gmail.com ❖ @DennisSladeJr ❖ linkedin.com/in/dennissladejr