SlideShare a Scribd company logo
Front-End Dev for Back-End Developers, That Conference 2014
Front-End Dev for Back-End Developers, That Conference 2014
FRONT-END 

DEVELOPMENT FOR

BACK-END DEVELOPERS
Bertine Buchan

@bertine
Gage Marketing
Amy Berg
@pork_chop
Minnesota Public Radio
(AKA Front-End Dev 101)
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
WHAT IS A FRONT-END DEV?
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
WE ARE FRONT-END DEVS.
• Build websites
• HTML email support
• QA (browser testing)
• UI/design review
• Knowledge sharing
• Estimating work (time & resources)
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
• HTML
• CSS
• JavaScript
• Project
Requirements
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
HTML
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Semantic HTML
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
HTML5 Shim
https://code.google.com/p/html5shim/
<!--[if lt IE 9]>!
<script src="html5shiv.js"></script>!
<![endif]-->
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Conditional Comments
http://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
<!--[if lt IE 9]> <html class="ltie9"> <![endif]-->!
<!--[if IE 9]><!--> <html> <!--<![endif]-->!
!
<style>!
! html body { !
! ! background-color: blue;!
! }!
! html.ltie9 body {!
! ! background-color: green;!
! }!
</style>
Front-End Dev for Back-End Developers, That Conference 2014
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
When to use <table>
Tabular Data, HTML emails
When not to use <table>
Everywhere else!
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
For related content layout, 

try

<ol>, <ul>, or <dl>
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
JUST MAKE IT
SEMANTIC.
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
OTHER HTML
QUESTIONS?
To learn more, start here: http://html5please.com/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
CSS
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Set base styles for your website with
Normalize.css

(or reset.css)
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
.rating p {!
text-align: center;!
padding: 0 20px 10px 20px;!
font-size: 13px;!
font-family: "Gill Sans","Gill Sans MT",Calibri,sans-serif;!
margin-bottom: 0;!
line-height: 20px;!
}!
!
.rating p.number {!
text-align: center;!
padding: 10px 20px 0 20px;!
font-size: 18px;!
font-weight: bold;!
font-family: "Gill Sans","Gill Sans MT",Calibri,sans-serif;!
margin-bottom: 0;!
line-height: 20px;!
}
Remember the ‘C’ in CSS…
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
.rating p {!
text-align: center;!
padding: 0 20px 10px 20px;!
font-size: 13px;!
font-family: "Gill Sans","Gill Sans MT",Calibri,sans-serif;!
margin-bottom: 0;!
line-height: 20px;!
}!
!
.rating p.number {!
text-align: center;!
padding: 10px 20px 0 20px;!
font-size: 18px;!
font-weight: bold;!
font-family: "Gill Sans","Gill Sans MT",Calibri,sans-serif;!
margin-bottom: 0;!
line-height: 20px;!
}
Cascading Stylesheets.
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Common Issues
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
display
inline, inline-block, block, none
http://css-tricks.com/almanac/properties/d/display/
Photo from Liz Andrade, @lizandrade, http://www.flickr.com/photos/cmdshiftdesign/5910326877/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
* { box-sizing: border-box }
http://www.paulirish.com/2012/box-sizing-border-box-ftw/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Positioning
static, relative, absolute, fixed
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
http://jsfiddle.net/7x85K/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
http://jsfiddle.net/7x85K/
Front-End Dev for Back-End Developers, That Conference 2014
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Clearing Floats
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
http://jsfiddle.net/W5u2Z/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Maybe you’re used to…
!
<div class="floatedbox left" style="background:
#7091b6;"><p>This is Box #1, floated left. It is
taller than Box #3.</p></div>!
!
<div class="floatedbox right" style="background:
#9cb2cc;"><p>This is Box #2, floated right.</p></div>!
!
<div style=“clear: both”></div> !
!
<div style="background: #c6d2e0;"><p>This is Box #3.
It is not floated, so it collapses into the two
previous floated boxes.</p></div>!
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
http://jsfiddle.net/Gz67L/
There’s a better way!
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Shortcuts
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Becomes…
padding-top: 25px; !
padding-right: 0;!
padding-bottom: 0;!
padding-left: 0;
padding: 25px 0 0 0;
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Becomes…
padding: 0 0 0 0;
padding: 0;
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Becomes…
border-bottom-width: 1px;!
border-bottom-style: solid;!
border-bottom-color: #333333;
border-bottom: 0 solid #333333;
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
backbone
grid960
bootstrap
roll your own
CSS Frameworks
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
OOCSS
https://github.com/stubbornella/oocss/wiki/faq
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
SASS/LESS
Preprocessor
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
JS
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Shims
Polyfills
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
jquery
angular.js
node.js
Frameworks
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
JSON templates
angular.js
mustache.js
handlebars.js
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
MEETING

PROJECT
REQUIREMENTS
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Are these required:
• Does the site need to be pixel perfect with design comp? 

(consider graceful degradation)
• Which browsers are you supporting?
• Do you need non-JS fallback?
• Responsive?
Front-End Dev for Back-End Developers, That Conference 2014
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
• In-browser inspectors and Firebug
• Built-in dev toolbars & responsive tools
• W3c validator
• CSS lint, JSON lint
• Visual Studio Web Essentials extension
• caniuse.com
Tools/workflow
Front-End Dev for Back-End Developers, That Conference 2014
Front-End Dev for Back-End Developers, That Conference 2014
THANK YOU!
Get our slides online: http://bit.ly/ThatConf_FEDev
(We’ll tweet this link, too!)
Bertine Buchan

@bertine
Amy Berg
@pork_chop
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
We’ve got more time!

Here are some bonus
TIPS
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
• Mouse/Hover-over states (CSS/JS)
• What happens when you click that button? (UI/site flow)
• Modals vs. Alerts vs. Inline dynamic messaging
Things to Consider
(these might not be part of your design comp)
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Sprites
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Image Replacement
http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/
http://jsfiddle.net/PEL7B/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Where does the text go?
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Hosted for you:
• Google Fonts
• TypeKit
!
Make your own:
• FontSquirrel
Web Fonts
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Icon Fonts
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Unwanted space between 

inline-block elements?
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
The most simple fix.
For other solutions: 

http://css-tricks.com/fighting-the-space-between-inline-block-elements/
http://jsfiddle.net/FgqPb/
THANK YOU AGAIN!
Bertine Buchan

@bertine
Amy Berg
@pork_chop

More Related Content

PDF
SEO for Visibility, Action, & Conversion 2011
PDF
Search Engine Optimization, Let’s Get Visible - Fort Wayne Chamber
PDF
SEO for Visibility, Action, & Conversion (SMBFTW)
PDF
Amazon and Google: The State of the Algorithms (2017)
PDF
Tip Per Minute: A Hyper-Active SEO Brain Dump
PDF
How to Optimize for Conversational Search #SMXLondon
PDF
Business Success with Core Web Vitals
PDF
Needs into Wants: Amazon, Google and the Race for Rankings
SEO for Visibility, Action, & Conversion 2011
Search Engine Optimization, Let’s Get Visible - Fort Wayne Chamber
SEO for Visibility, Action, & Conversion (SMBFTW)
Amazon and Google: The State of the Algorithms (2017)
Tip Per Minute: A Hyper-Active SEO Brain Dump
How to Optimize for Conversational Search #SMXLondon
Business Success with Core Web Vitals
Needs into Wants: Amazon, Google and the Race for Rankings

What's hot (20)

PPTX
Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...
PPTX
Webinar: How To Use Web Analytics To Improve Website Conversions
PDF
Sunday Business Post SEO Masterclass - John RIng
PDF
BrightonSEO 2018 - Practical Insights into Winning Epic Featured Snippets
PDF
ID2013 - Optimizing Your Website’s Architecture For SEO
PDF
Distance from Perfect: Marketing w/ the Human Algorithm - DDW
PDF
SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...
PPTX
TechSEO Boost - Apps script for SEOs
PDF
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
PPTX
Getting found - Search Engine Optimizaton
PPTX
How to Make Your WordPress Site Search Engine Friendly & Web Marketing Ready
PDF
The Future Of Technical SEO Isn't Your Website
KEY
Word campgr stop selling seo namtrok
PDF
EBE 2019 - Optimizing for Search Bots
PDF
Event Promotion and SEO
PPTX
BrightonSeo - ecommerce seo pitfalls by Dave Naylor
PDF
3 Ways You Can Give and Get Good Design Feedback
PDF
Search Engine Optimisation
PPTX
How Marketers Can Work With Code
PDF
The Inbounder London - Jono Alderson
Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...
Webinar: How To Use Web Analytics To Improve Website Conversions
Sunday Business Post SEO Masterclass - John RIng
BrightonSEO 2018 - Practical Insights into Winning Epic Featured Snippets
ID2013 - Optimizing Your Website’s Architecture For SEO
Distance from Perfect: Marketing w/ the Human Algorithm - DDW
SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...
TechSEO Boost - Apps script for SEOs
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
Getting found - Search Engine Optimizaton
How to Make Your WordPress Site Search Engine Friendly & Web Marketing Ready
The Future Of Technical SEO Isn't Your Website
Word campgr stop selling seo namtrok
EBE 2019 - Optimizing for Search Bots
Event Promotion and SEO
BrightonSeo - ecommerce seo pitfalls by Dave Naylor
3 Ways You Can Give and Get Good Design Feedback
Search Engine Optimisation
How Marketers Can Work With Code
The Inbounder London - Jono Alderson
Ad

Viewers also liked (6)

PPTX
Programming basics
PPT
Back end[1] debdeep
PPTX
Today's Trending Technologies 2014
PDF
Designing and developing mobile web applications with Mockup, Sencha Touch an...
PDF
How To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce Labs
PDF
Quantum Computers PART 1 & 2 by Prof Lili Saghafi
Programming basics
Back end[1] debdeep
Today's Trending Technologies 2014
Designing and developing mobile web applications with Mockup, Sencha Touch an...
How To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce Labs
Quantum Computers PART 1 & 2 by Prof Lili Saghafi
Ad

Similar to Front-End Dev for Back-End Developers, That Conference 2014 (20)

PDF
MIMA Summit 2014: Front-End Development for Marketers
PDF
Front end development best practices
PPTX
Making Web Fun
PPTX
Front-end development introduction (HTML, CSS). Part 1
PDF
CSS3: Are you experienced?
PDF
Crafting Front-End Style Guides
PDF
Business of Front-end Web Development
PDF
Developing Technical SEO Skills - Brighton SEO Sept 2021
PPTX
Chandu.pptxhuuuuuuyyygfddssdfyuijhgghujjhhhhg
KEY
Ease into HTML5 and CSS3
PDF
Front End Best Practices
PDF
Web Summer Camp Keynote
PDF
Agile mobile first
PPTX
PDF
Essentials for a Front End Developer role.
PPTX
CSS Eye for the Programmer Guy
PDF
Knowing it all
PDF
A Work Day Of A Web Developer
PDF
What is FED
PDF
Drupalcamp performance
MIMA Summit 2014: Front-End Development for Marketers
Front end development best practices
Making Web Fun
Front-end development introduction (HTML, CSS). Part 1
CSS3: Are you experienced?
Crafting Front-End Style Guides
Business of Front-end Web Development
Developing Technical SEO Skills - Brighton SEO Sept 2021
Chandu.pptxhuuuuuuyyygfddssdfyuijhgghujjhhhhg
Ease into HTML5 and CSS3
Front End Best Practices
Web Summer Camp Keynote
Agile mobile first
Essentials for a Front End Developer role.
CSS Eye for the Programmer Guy
Knowing it all
A Work Day Of A Web Developer
What is FED
Drupalcamp performance

Recently uploaded (20)

PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPT
Teaching material agriculture food technology
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
cuic standard and advanced reporting.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Cloud computing and distributed systems.
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Electronic commerce courselecture one. Pdf
Programs and apps: productivity, graphics, security and other tools
MIND Revenue Release Quarter 2 2025 Press Release
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Teaching material agriculture food technology
sap open course for s4hana steps from ECC to s4
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
cuic standard and advanced reporting.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Cloud computing and distributed systems.
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
NewMind AI Weekly Chronicles - August'25 Week I
Unlocking AI with Model Context Protocol (MCP)
Network Security Unit 5.pdf for BCA BBA.
Chapter 3 Spatial Domain Image Processing.pdf
Electronic commerce courselecture one. Pdf

Front-End Dev for Back-End Developers, That Conference 2014