Class 6
ReviewInline Styles – In the <body> area2<td style=“color: #3399cc” >td { color: #3399cc; }selectorpropertyvalueEmbedded Styles – in the <head> areaselectorpropertyvalue
External Style sheet3<link rel="stylesheet" href="styles/style.css" type="text/css" />
Types of Cascading Style SheetsExternal CSSCreated in separate .css fileAffects all pages using the selectors4
 CSS SelectorsCSS style rules can be configured for an:HTML element selectorid selector
 ID Selectorid selector- used for one unique item on the page<div id=“divname”>…content…</div>#divname { attributes }

More Related Content

PPT
Week3 css
PPTX
Class7
PDF
Lab#5 style and selector
PPT
Css Primer - basic stuff
PPTX
Css intro
PPT
Chapter 02
PPT
Basic html
PPTX
Introduction to web design discussing which languages is used for website des...
Week3 css
Class7
Lab#5 style and selector
Css Primer - basic stuff
Css intro
Chapter 02
Basic html
Introduction to web design discussing which languages is used for website des...

What's hot (19)

PPTX
chitra
PPTX
CSS Basics (Cascading Style Sheet)
PPTX
Web engineering
PDF
Introduction to CSS
PPTX
Html & CSS
PPTX
Webdesign
PPTX
Introduction to CSS
PPTX
introduction to CSS
PPTX
Web Development - Lecture 2
PPT
INFO3775 Chapter 2 Part 2
PDF
Points Theme A Couple Of 0
PPTX
Web Development - Lecture 3
PPTX
Web Development - Lecture 5
PPT
CSS - Cascading Style Sheet
PPTX
HTML and CSS
PDF
CSS in HTML
PPTX
Welcome to css!
chitra
CSS Basics (Cascading Style Sheet)
Web engineering
Introduction to CSS
Html & CSS
Webdesign
Introduction to CSS
introduction to CSS
Web Development - Lecture 2
INFO3775 Chapter 2 Part 2
Points Theme A Couple Of 0
Web Development - Lecture 3
Web Development - Lecture 5
CSS - Cascading Style Sheet
HTML and CSS
CSS in HTML
Welcome to css!
Ad

Viewers also liked (7)

PPTX
Class13
PPTX
Class18
PPTX
Class2
PPTX
Class15
PPTX
Class 3
PPTX
Class 10
PPTX
Class11
Class13
Class18
Class2
Class15
Class 3
Class 10
Class11
Ad

More from Jiyeon Lee (12)

PPTX
Cultural conflict resolution
PPTX
Class22
PPTX
Class 21
PPTX
Class 21
PPTX
Class 20
PPTX
Class19
PPTX
Class 17
PPTX
Class14
PPTX
Class 12
PPTX
Class8
PPTX
Class5
PPTX
Class4
Cultural conflict resolution
Class22
Class 21
Class 21
Class 20
Class19
Class 17
Class14
Class 12
Class8
Class5
Class4

Class6

  • 2. ReviewInline Styles – In the <body> area2<td style=“color: #3399cc” >td { color: #3399cc; }selectorpropertyvalueEmbedded Styles – in the <head> areaselectorpropertyvalue
  • 3. External Style sheet3<link rel="stylesheet" href="styles/style.css" type="text/css" />
  • 4. Types of Cascading Style SheetsExternal CSSCreated in separate .css fileAffects all pages using the selectors4
  • 5. CSS SelectorsCSS style rules can be configured for an:HTML element selectorid selector
  • 6. ID Selectorid selector- used for one unique item on the page<div id=“divname”>…content…</div>#divname { attributes }