ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Introduction to
CSS for
Product Managers
Rodhmir Labadie
April 20, 2017
What is CSS?
CSS is used to style elements on a page that gives
them form.
Flavors of CSS
Externally Linked
Internal using <style>
Inline
External
<link rel="stylesheet" type="text/css" href="theme.css">
Internal
<style>
h1 {color: blue;}
p {color: red;}
</style>
Inline
<p style="color: red;">Red text</p>
How much CSS do you need
to know in order to
communicate with
the team?
HTML Elements (Selectors)
A few basic elements to start
h1 p table, tr, td
div span button
img a ul, li
CSS Properties
Handy properties to keep in mind
margin padding border
background color position
height, width display visibility
Let’s dive into CSS...
Let’s Talk Simple Syntax and how to
write css.
selector {
property: value;
}
div {
height: 100px;
width: 100px;
}
.title {
font-size: 20px;
}
#flag {
margin: 0 0 20px 0; /* Commenting */
}
Applying styles to basic elements
.main_box {
border: 1px solid rgba(0,0,0,1);
padding: 20px;
}
h1 {
font-size: 20px;
}
main_box p {
color: blue; /* Words!? */
}
<div class="main_box">
<h1>The Box Title</h1>
<p>A few words about the box and the
title and few other things.</p>
</div>
Classes, pseudo classes, IDs...
a {
color: #ccc; /* 3 letters?! */
text-decoration: none;
}
a:hover {
color: #2277dd; /* 6 numbers?! */
text-decoration: underline;
cursor: default;
}
<div class="main_box">
<h1>The Box Title</h1>
<p>A few words about the box and the
title and few other things. </br><a
href="http://www.google.com">Google</a></p>
</div>
Classes, pseudo classes, IDs...
#social {
color: #ccc;
text-decoration: none;
}
#social:hover {
color: #33f75b;
text-decoration: underline;
cursor: pointer; /* Do we need this? */
}
<div class="main_box">
<h1>The Box Title</h1>
<p>A few words about the box and the
title and few other things. </br><a
href="http://www.google.com">Google</a>&nbsp;&n
bsp;<a href="http://www.facebook.com"
id="social">Facebook</a></p>
</div>
Into the wild...
Browser Developer Tools
(today we’re using Google Chrome)
Interacting with the DOM
(Document Object Model)
Next steps...
Reference & Learning
1
www.w3.org www.css-tricks.com www.alistapart.com
2 3
Exploring & Experimenting
1
www.stackoverflow.com www.quora.com
2
www.codepen.com
3
jsfiddle.net
4
Many ways to apply CSS...
It’s up to you to explore
(Experimenting is where the learning happens!)
Questions?

More Related Content

What's hot (18)

cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
tutorialsruby
Ìý
Web Technology
Web TechnologyWeb Technology
Web Technology
Kirti H Mandal
Ìý
What is css
What is cssWhat is css
What is css
Christopher Tetta
Ìý
chitra
chitrachitra
chitra
sweet chitra
Ìý
Web designing training in chandigarh
Web designing training in chandigarhWeb designing training in chandigarh
Web designing training in chandigarh
Sheetal Sharma
Ìý
Flipping Tables: Displaying Data on Small Screens
Flipping Tables: Displaying Data on Small ScreensFlipping Tables: Displaying Data on Small Screens
Flipping Tables: Displaying Data on Small Screens
Stephanie Hobson
Ìý
Lab#7 CSS Box Model
Lab#7 CSS Box ModelLab#7 CSS Box Model
Lab#7 CSS Box Model
Yaowaluck Promdee
Ìý
CSS Box Model and Dimensions
CSS Box Model and DimensionsCSS Box Model and Dimensions
CSS Box Model and Dimensions
Gerson Abesamis
Ìý
Flipping Tables: Displaying Data on Small Screens (2016-02)
Flipping Tables: Displaying Data on Small Screens (2016-02)Flipping Tables: Displaying Data on Small Screens (2016-02)
Flipping Tables: Displaying Data on Small Screens (2016-02)
Stephanie Hobson
Ìý
Web
WebWeb
Web
Sreejith Ramakrishnan
Ìý
CSS
CSSCSS
CSS
Rohit Verma ....
Ìý
Css and its types
Css and its typesCss and its types
Css and its types
Mansi Mahadik
Ìý
Adobe Dreamweaver CS5 Basics
Adobe Dreamweaver CS5 BasicsAdobe Dreamweaver CS5 Basics
Adobe Dreamweaver CS5 Basics
Douglas Strahler
Ìý
CSS Introduction
CSS IntroductionCSS Introduction
CSS Introduction
Swati Sharma
Ìý
PHP - Introduction to PHP CSS
PHP -  Introduction to PHP CSSPHP -  Introduction to PHP CSS
PHP - Introduction to PHP CSS
Vibrant Technologies & Computers
Ìý
Cascading style sheet an introduction
Cascading style sheet   an introductionCascading style sheet   an introduction
Cascading style sheet an introduction
Himanshu Pathak
Ìý
Girls Can Code East Brunswick Workshop ºÝºÝߣs
Girls Can Code East Brunswick Workshop ºÝºÝߣsGirls Can Code East Brunswick Workshop ºÝºÝߣs
Girls Can Code East Brunswick Workshop ºÝºÝߣs
Kayla Leung
Ìý
CSS
CSSCSS
CSS
Govardhan Bhavani
Ìý
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
tutorialsruby
Ìý
Web designing training in chandigarh
Web designing training in chandigarhWeb designing training in chandigarh
Web designing training in chandigarh
Sheetal Sharma
Ìý
Flipping Tables: Displaying Data on Small Screens
Flipping Tables: Displaying Data on Small ScreensFlipping Tables: Displaying Data on Small Screens
Flipping Tables: Displaying Data on Small Screens
Stephanie Hobson
Ìý
CSS Box Model and Dimensions
CSS Box Model and DimensionsCSS Box Model and Dimensions
CSS Box Model and Dimensions
Gerson Abesamis
Ìý
Flipping Tables: Displaying Data on Small Screens (2016-02)
Flipping Tables: Displaying Data on Small Screens (2016-02)Flipping Tables: Displaying Data on Small Screens (2016-02)
Flipping Tables: Displaying Data on Small Screens (2016-02)
Stephanie Hobson
Ìý
Css and its types
Css and its typesCss and its types
Css and its types
Mansi Mahadik
Ìý
Adobe Dreamweaver CS5 Basics
Adobe Dreamweaver CS5 BasicsAdobe Dreamweaver CS5 Basics
Adobe Dreamweaver CS5 Basics
Douglas Strahler
Ìý
CSS Introduction
CSS IntroductionCSS Introduction
CSS Introduction
Swati Sharma
Ìý
Cascading style sheet an introduction
Cascading style sheet   an introductionCascading style sheet   an introduction
Cascading style sheet an introduction
Himanshu Pathak
Ìý
Girls Can Code East Brunswick Workshop ºÝºÝߣs
Girls Can Code East Brunswick Workshop ºÝºÝߣsGirls Can Code East Brunswick Workshop ºÝºÝߣs
Girls Can Code East Brunswick Workshop ºÝºÝߣs
Kayla Leung
Ìý

Similar to Introduction to css for product managers (20)

David Weliver
David WeliverDavid Weliver
David Weliver
Philip Taylor
Ìý
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
CSS – CASCADING STYLE SHEET - MY_PPT.pptxCSS – CASCADING STYLE SHEET - MY_PPT.pptx
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
IorlahaSamuel1
Ìý
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
CSS – CASCADING STYLE SHEET - MY_PPT.pptxCSS – CASCADING STYLE SHEET - MY_PPT.pptx
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
IorlahaSamuel1
Ìý
WT CSS
WT  CSSWT  CSS
WT CSS
Mohan186867
Ìý
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
tutorialsruby
Ìý
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
Tesfaye Yenealem
Ìý
CSS_Day_ONE (W3schools)
CSS_Day_ONE (W3schools)CSS_Day_ONE (W3schools)
CSS_Day_ONE (W3schools)
Rafi Haidari
Ìý
Cascading style sheet, CSS Box model, Table in CSS
Cascading style sheet, CSS Box model, Table in CSSCascading style sheet, CSS Box model, Table in CSS
Cascading style sheet, CSS Box model, Table in CSS
SherinRappai
Ìý
Web 101
Web 101Web 101
Web 101
OneDesignCompany
Ìý
Workshop 2 ºÝºÝߣs.pptx
Workshop 2 ºÝºÝߣs.pptxWorkshop 2 ºÝºÝߣs.pptx
Workshop 2 ºÝºÝߣs.pptx
DaniyalSardar
Ìý
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
Ìý
The Dark Arts of CSS
The Dark Arts of CSSThe Dark Arts of CSS
The Dark Arts of CSS
SiddharthBorderwala
Ìý
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptxChapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
eyasu6
Ìý
Web Designing
Web DesigningWeb Designing
Web Designing
R.Karthikeyan - Vivekananda College
Ìý
Unit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.pptUnit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.ppt
TusharTikia
Ìý
CSS Foundations, pt 2
CSS Foundations, pt 2CSS Foundations, pt 2
CSS Foundations, pt 2
Shawn Calvert
Ìý
Html html html html html html html html html
Html html html html html html html html htmlHtml html html html html html html html html
Html html html html html html html html html
riturajbhujel103
Ìý
Css
CssCss
Css
shanmuga rajan
Ìý
CSS Foundations, pt 1
CSS Foundations, pt 1CSS Foundations, pt 1
CSS Foundations, pt 1
Shawn Calvert
Ìý
Intro to CSS with OvationTix's User Experience Lead
 Intro to CSS with OvationTix's User Experience Lead Intro to CSS with OvationTix's User Experience Lead
Intro to CSS with OvationTix's User Experience Lead
Product School
Ìý
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
CSS – CASCADING STYLE SHEET - MY_PPT.pptxCSS – CASCADING STYLE SHEET - MY_PPT.pptx
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
IorlahaSamuel1
Ìý
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
CSS – CASCADING STYLE SHEET - MY_PPT.pptxCSS – CASCADING STYLE SHEET - MY_PPT.pptx
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
IorlahaSamuel1
Ìý
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
tutorialsruby
Ìý
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
Tesfaye Yenealem
Ìý
CSS_Day_ONE (W3schools)
CSS_Day_ONE (W3schools)CSS_Day_ONE (W3schools)
CSS_Day_ONE (W3schools)
Rafi Haidari
Ìý
Cascading style sheet, CSS Box model, Table in CSS
Cascading style sheet, CSS Box model, Table in CSSCascading style sheet, CSS Box model, Table in CSS
Cascading style sheet, CSS Box model, Table in CSS
SherinRappai
Ìý
Workshop 2 ºÝºÝߣs.pptx
Workshop 2 ºÝºÝߣs.pptxWorkshop 2 ºÝºÝߣs.pptx
Workshop 2 ºÝºÝߣs.pptx
DaniyalSardar
Ìý
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
Ìý
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptxChapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
eyasu6
Ìý
Unit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.pptUnit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.ppt
TusharTikia
Ìý
CSS Foundations, pt 2
CSS Foundations, pt 2CSS Foundations, pt 2
CSS Foundations, pt 2
Shawn Calvert
Ìý
Html html html html html html html html html
Html html html html html html html html htmlHtml html html html html html html html html
Html html html html html html html html html
riturajbhujel103
Ìý
CSS Foundations, pt 1
CSS Foundations, pt 1CSS Foundations, pt 1
CSS Foundations, pt 1
Shawn Calvert
Ìý
Intro to CSS with OvationTix's User Experience Lead
 Intro to CSS with OvationTix's User Experience Lead Intro to CSS with OvationTix's User Experience Lead
Intro to CSS with OvationTix's User Experience Lead
Product School
Ìý

Recently uploaded (20)

catalog. for freight forwarding business
catalog. for freight forwarding businesscatalog. for freight forwarding business
catalog. for freight forwarding business
ILHAM GROUP INTERNATIONAL
Ìý
Windows Server 2025 known issues and notifications.pptx
Windows Server 2025 known issues and notifications.pptxWindows Server 2025 known issues and notifications.pptx
Windows Server 2025 known issues and notifications.pptx
WroffyTechnologies
Ìý
PROFILE FOR FREIGHT FORWARDING INTERNATIONAL BUSINESS IMPORT EXPORT
PROFILE FOR FREIGHT FORWARDING INTERNATIONAL BUSINESS IMPORT EXPORTPROFILE FOR FREIGHT FORWARDING INTERNATIONAL BUSINESS IMPORT EXPORT
PROFILE FOR FREIGHT FORWARDING INTERNATIONAL BUSINESS IMPORT EXPORT
ILHAM GROUP INTERNATIONAL
Ìý
Bradley_Jamelia_BSEB_PB1_2025-03 Personal Brand Identity Kit
Bradley_Jamelia_BSEB_PB1_2025-03 Personal Brand Identity KitBradley_Jamelia_BSEB_PB1_2025-03 Personal Brand Identity Kit
Bradley_Jamelia_BSEB_PB1_2025-03 Personal Brand Identity Kit
JABradley1
Ìý
Entrepreneur Magazine India - Unlocking the Indian Market
Entrepreneur Magazine India - Unlocking the Indian MarketEntrepreneur Magazine India - Unlocking the Indian Market
Entrepreneur Magazine India - Unlocking the Indian Market
Business Outreach
Ìý
Strategic_MANAGEMENT_OF_WALMART[1][1].pptx
Strategic_MANAGEMENT_OF_WALMART[1][1].pptxStrategic_MANAGEMENT_OF_WALMART[1][1].pptx
Strategic_MANAGEMENT_OF_WALMART[1][1].pptx
KumarSubrato2
Ìý
The CMO Survey - Highlights and Insights Report - Spring 2025
The CMO Survey - Highlights and Insights Report - Spring 2025The CMO Survey - Highlights and Insights Report - Spring 2025
The CMO Survey - Highlights and Insights Report - Spring 2025
christinemoorman
Ìý
Laparoscopic UHD Imaging System Pitch Deck | March 2025
Laparoscopic UHD Imaging System Pitch Deck | March 2025Laparoscopic UHD Imaging System Pitch Deck | March 2025
Laparoscopic UHD Imaging System Pitch Deck | March 2025
Hector Del Castillo, CPM, CPMM
Ìý
The Eisenhower Matrix, also known as the Urgent-Important Matrix - Template a...
The Eisenhower Matrix, also known as the Urgent-Important Matrix - Template a...The Eisenhower Matrix, also known as the Urgent-Important Matrix - Template a...
The Eisenhower Matrix, also known as the Urgent-Important Matrix - Template a...
Aurelien Domont, MBA
Ìý
How to Reposition Learning & Development as a Strategic Learning Partner_26 M...
How to Reposition Learning & Development as a Strategic Learning Partner_26 M...How to Reposition Learning & Development as a Strategic Learning Partner_26 M...
How to Reposition Learning & Development as a Strategic Learning Partner_26 M...
Charles Cotter, PhD
Ìý
Authentically Social Win Reno by Corey Perlman
Authentically Social Win Reno by Corey PerlmanAuthentically Social Win Reno by Corey Perlman
Authentically Social Win Reno by Corey Perlman
Corey Perlman, Social Media Speaker and Consultant
Ìý
Mohit Bansal_ The Green Visionary Behind GMI Infra’s Sustainable Legacy.pdf
Mohit Bansal_ The Green Visionary Behind GMI Infra’s Sustainable Legacy.pdfMohit Bansal_ The Green Visionary Behind GMI Infra’s Sustainable Legacy.pdf
Mohit Bansal_ The Green Visionary Behind GMI Infra’s Sustainable Legacy.pdf
Mohit Bansal GMI
Ìý
Most Renowned Personality to Look for in 2025.pdf
Most Renowned Personality to Look for in 2025.pdfMost Renowned Personality to Look for in 2025.pdf
Most Renowned Personality to Look for in 2025.pdf
insightssuccess2
Ìý
Investment Opportunities in Semiconductor and Advanced Electronics Industries
Investment Opportunities in Semiconductor and Advanced Electronics IndustriesInvestment Opportunities in Semiconductor and Advanced Electronics Industries
Investment Opportunities in Semiconductor and Advanced Electronics Industries
Thailand Board of Investment North America
Ìý
Smile Curve In Business - Presented By Saeed Hasani
Smile Curve In Business - Presented By Saeed HasaniSmile Curve In Business - Presented By Saeed Hasani
Smile Curve In Business - Presented By Saeed Hasani
Saeed Hasani Doughabadi
Ìý
Hinduja Brothers - Pioneers of Global Business and Philanthropy
Hinduja Brothers - Pioneers of Global Business and PhilanthropyHinduja Brothers - Pioneers of Global Business and Philanthropy
Hinduja Brothers - Pioneers of Global Business and Philanthropy
shiveshmani09
Ìý
How a Shopify Subscription App Can Increase Recurring Revenue for Pet Brands
How a Shopify Subscription App Can Increase Recurring Revenue for Pet BrandsHow a Shopify Subscription App Can Increase Recurring Revenue for Pet Brands
How a Shopify Subscription App Can Increase Recurring Revenue for Pet Brands
emmacoleman9999
Ìý
how to launch cosmetic d2c brand a complete roadmap
how to launch cosmetic d2c brand a complete roadmaphow to launch cosmetic d2c brand a complete roadmap
how to launch cosmetic d2c brand a complete roadmap
SachinShukla868623
Ìý
HRD Support Program in Semiconductor & Advanced Electronics Industries
HRD Support Program in Semiconductor & Advanced Electronics IndustriesHRD Support Program in Semiconductor & Advanced Electronics Industries
HRD Support Program in Semiconductor & Advanced Electronics Industries
Thailand Board of Investment North America
Ìý
The Role of Data Analytics in Shaping Leadership Trends_ARL_27 March 2025.pptx
The Role of Data Analytics in Shaping Leadership Trends_ARL_27 March 2025.pptxThe Role of Data Analytics in Shaping Leadership Trends_ARL_27 March 2025.pptx
The Role of Data Analytics in Shaping Leadership Trends_ARL_27 March 2025.pptx
Charles Cotter, PhD
Ìý
catalog. for freight forwarding business
catalog. for freight forwarding businesscatalog. for freight forwarding business
catalog. for freight forwarding business
ILHAM GROUP INTERNATIONAL
Ìý
Windows Server 2025 known issues and notifications.pptx
Windows Server 2025 known issues and notifications.pptxWindows Server 2025 known issues and notifications.pptx
Windows Server 2025 known issues and notifications.pptx
WroffyTechnologies
Ìý
PROFILE FOR FREIGHT FORWARDING INTERNATIONAL BUSINESS IMPORT EXPORT
PROFILE FOR FREIGHT FORWARDING INTERNATIONAL BUSINESS IMPORT EXPORTPROFILE FOR FREIGHT FORWARDING INTERNATIONAL BUSINESS IMPORT EXPORT
PROFILE FOR FREIGHT FORWARDING INTERNATIONAL BUSINESS IMPORT EXPORT
ILHAM GROUP INTERNATIONAL
Ìý
Bradley_Jamelia_BSEB_PB1_2025-03 Personal Brand Identity Kit
Bradley_Jamelia_BSEB_PB1_2025-03 Personal Brand Identity KitBradley_Jamelia_BSEB_PB1_2025-03 Personal Brand Identity Kit
Bradley_Jamelia_BSEB_PB1_2025-03 Personal Brand Identity Kit
JABradley1
Ìý
Entrepreneur Magazine India - Unlocking the Indian Market
Entrepreneur Magazine India - Unlocking the Indian MarketEntrepreneur Magazine India - Unlocking the Indian Market
Entrepreneur Magazine India - Unlocking the Indian Market
Business Outreach
Ìý
Strategic_MANAGEMENT_OF_WALMART[1][1].pptx
Strategic_MANAGEMENT_OF_WALMART[1][1].pptxStrategic_MANAGEMENT_OF_WALMART[1][1].pptx
Strategic_MANAGEMENT_OF_WALMART[1][1].pptx
KumarSubrato2
Ìý
The CMO Survey - Highlights and Insights Report - Spring 2025
The CMO Survey - Highlights and Insights Report - Spring 2025The CMO Survey - Highlights and Insights Report - Spring 2025
The CMO Survey - Highlights and Insights Report - Spring 2025
christinemoorman
Ìý
Laparoscopic UHD Imaging System Pitch Deck | March 2025
Laparoscopic UHD Imaging System Pitch Deck | March 2025Laparoscopic UHD Imaging System Pitch Deck | March 2025
Laparoscopic UHD Imaging System Pitch Deck | March 2025
Hector Del Castillo, CPM, CPMM
Ìý
The Eisenhower Matrix, also known as the Urgent-Important Matrix - Template a...
The Eisenhower Matrix, also known as the Urgent-Important Matrix - Template a...The Eisenhower Matrix, also known as the Urgent-Important Matrix - Template a...
The Eisenhower Matrix, also known as the Urgent-Important Matrix - Template a...
Aurelien Domont, MBA
Ìý
How to Reposition Learning & Development as a Strategic Learning Partner_26 M...
How to Reposition Learning & Development as a Strategic Learning Partner_26 M...How to Reposition Learning & Development as a Strategic Learning Partner_26 M...
How to Reposition Learning & Development as a Strategic Learning Partner_26 M...
Charles Cotter, PhD
Ìý
Mohit Bansal_ The Green Visionary Behind GMI Infra’s Sustainable Legacy.pdf
Mohit Bansal_ The Green Visionary Behind GMI Infra’s Sustainable Legacy.pdfMohit Bansal_ The Green Visionary Behind GMI Infra’s Sustainable Legacy.pdf
Mohit Bansal_ The Green Visionary Behind GMI Infra’s Sustainable Legacy.pdf
Mohit Bansal GMI
Ìý
Most Renowned Personality to Look for in 2025.pdf
Most Renowned Personality to Look for in 2025.pdfMost Renowned Personality to Look for in 2025.pdf
Most Renowned Personality to Look for in 2025.pdf
insightssuccess2
Ìý
Investment Opportunities in Semiconductor and Advanced Electronics Industries
Investment Opportunities in Semiconductor and Advanced Electronics IndustriesInvestment Opportunities in Semiconductor and Advanced Electronics Industries
Investment Opportunities in Semiconductor and Advanced Electronics Industries
Thailand Board of Investment North America
Ìý
Smile Curve In Business - Presented By Saeed Hasani
Smile Curve In Business - Presented By Saeed HasaniSmile Curve In Business - Presented By Saeed Hasani
Smile Curve In Business - Presented By Saeed Hasani
Saeed Hasani Doughabadi
Ìý
Hinduja Brothers - Pioneers of Global Business and Philanthropy
Hinduja Brothers - Pioneers of Global Business and PhilanthropyHinduja Brothers - Pioneers of Global Business and Philanthropy
Hinduja Brothers - Pioneers of Global Business and Philanthropy
shiveshmani09
Ìý
How a Shopify Subscription App Can Increase Recurring Revenue for Pet Brands
How a Shopify Subscription App Can Increase Recurring Revenue for Pet BrandsHow a Shopify Subscription App Can Increase Recurring Revenue for Pet Brands
How a Shopify Subscription App Can Increase Recurring Revenue for Pet Brands
emmacoleman9999
Ìý
how to launch cosmetic d2c brand a complete roadmap
how to launch cosmetic d2c brand a complete roadmaphow to launch cosmetic d2c brand a complete roadmap
how to launch cosmetic d2c brand a complete roadmap
SachinShukla868623
Ìý
The Role of Data Analytics in Shaping Leadership Trends_ARL_27 March 2025.pptx
The Role of Data Analytics in Shaping Leadership Trends_ARL_27 March 2025.pptxThe Role of Data Analytics in Shaping Leadership Trends_ARL_27 March 2025.pptx
The Role of Data Analytics in Shaping Leadership Trends_ARL_27 March 2025.pptx
Charles Cotter, PhD
Ìý

Introduction to css for product managers

  • 1. Introduction to CSS for Product Managers Rodhmir Labadie April 20, 2017
  • 2. What is CSS? CSS is used to style elements on a page that gives them form.
  • 3. Flavors of CSS Externally Linked Internal using <style> Inline External <link rel="stylesheet" type="text/css" href="theme.css"> Internal <style> h1 {color: blue;} p {color: red;} </style> Inline <p style="color: red;">Red text</p>
  • 4. How much CSS do you need to know in order to communicate with the team?
  • 5. HTML Elements (Selectors) A few basic elements to start h1 p table, tr, td div span button img a ul, li
  • 6. CSS Properties Handy properties to keep in mind margin padding border background color position height, width display visibility
  • 8. Let’s Talk Simple Syntax and how to write css. selector { property: value; } div { height: 100px; width: 100px; } .title { font-size: 20px; } #flag { margin: 0 0 20px 0; /* Commenting */ }
  • 9. Applying styles to basic elements .main_box { border: 1px solid rgba(0,0,0,1); padding: 20px; } h1 { font-size: 20px; } main_box p { color: blue; /* Words!? */ } <div class="main_box"> <h1>The Box Title</h1> <p>A few words about the box and the title and few other things.</p> </div>
  • 10. Classes, pseudo classes, IDs... a { color: #ccc; /* 3 letters?! */ text-decoration: none; } a:hover { color: #2277dd; /* 6 numbers?! */ text-decoration: underline; cursor: default; } <div class="main_box"> <h1>The Box Title</h1> <p>A few words about the box and the title and few other things. </br><a href="http://www.google.com">Google</a></p> </div>
  • 11. Classes, pseudo classes, IDs... #social { color: #ccc; text-decoration: none; } #social:hover { color: #33f75b; text-decoration: underline; cursor: pointer; /* Do we need this? */ } <div class="main_box"> <h1>The Box Title</h1> <p>A few words about the box and the title and few other things. </br><a href="http://www.google.com">Google</a>&nbsp;&n bsp;<a href="http://www.facebook.com" id="social">Facebook</a></p> </div>
  • 13. Browser Developer Tools (today we’re using Google Chrome)
  • 14. Interacting with the DOM (Document Object Model)
  • 16. Reference & Learning 1 www.w3.org www.css-tricks.com www.alistapart.com 2 3
  • 17. Exploring & Experimenting 1 www.stackoverflow.com www.quora.com 2 www.codepen.com 3 jsfiddle.net 4
  • 18. Many ways to apply CSS... It’s up to you to explore (Experimenting is where the learning happens!)