SlideShare a Scribd company logo
CSS Foundations, pt 1
22-3375 Web Design I // Columbia College Chicago
For Starters
!
!

Post assignment and blog post
Review student blog posts
Instructor review of Assign 3
HTML refresher exercise

!
!
Skills learned so far


how to create a web directory and link between files
Code a basic webpage from scratch
how to mark up different types of content with appropriate HTML tags
how to use basic HTML attributes to create links and web images
how to set up a site domain, server host and install a wordpress site
CSS Foundations, pt 1
CSS Foundations, pt 1
CSS Foundations, pt 1
CSS Foundations, pt 1
CSS Foundations, pt 1
CSS Foundations, pt 1
CSS Foundations, pt 1
CSS Foundations, pt 1
Three layers of web design:

Structure, Style, Behavior
Three layers of web design
Three layers of web design
Three layers of web design
BEHAVIOR
Javascript

PRESENTATION
CSS
Imagery

STRUCTURE
HTML markup
Site planning

Three layers of web design
What is CSS?
Cascading

+

Style Sheet
Stylesheet

A stylesheet is a set of rules defining

how an html element will be “presented”
in the browser.
These rules are targeted to specific
elements in the html document.

The concept is very similar to how you create stylesheets in InDesign.
Cascading

Most pages will have multiple stylesheets
that define different styles to the same
elements.
The cascade defines an ordered sequence
of style sheets where rules in later sheets
have greater precedence than earlier
ones.

low importance

Client (user) stylesheet


Linked stylesheet


high importance

Embedded stylesheet


Inline Styles

Stylesheet 1

make the paragraph 16px, Verdana, red

Stylesheet 2

make the paragraph blue


16px, Verdana, blue

CSS Foundations, pt 1
How to add css to your document
There are 2 basic ways to add styles to your html page:


External (linked)


<head>

Internal

External



<head>

<link rel="stylesheet" type="text/css" href="stylesheet.css">

</head>


Except in special circumstances, best practice is
to keep all your styles in a separate css document.
Linked stylesheets can be applied across multiple
documents and sites.
Internal (embedded)



<head>

<style> p {color: red} </style>

</head>


You can add styles directly into your html page
using the “style” element in the <head> of
your document.
Embedded styles apply ONLY to that 

html document.
Internal (inline)



<p style=”color: red”>Red Text</tag>


You can add styles directly into your html
markup using the “style” attribute on opening
tag of your element. This is called an “inline”
style.
Inline styles apply ONLY to that specific
instance of the element.
CSS Foundations, pt 1
Best Practice

In most cases you should use the external method of adding
styles to your html page.
Writing the css in the <head> of your document is acceptable
if you definitely only want to apply the styles to a single page.
However, adding your styles “inline” — inside a html starting
tag, e.g. <p style=”font-size: 14px”> — should be avoided.


CSS Syntax

Syntax = the rules for how to write the language

Three terms for describing your styles:

CSS rule
CSS selector
CSS declaration

CSS Rule



selector {property: value;}

declaration


Every style is defined by a selector and 

a declaration. The declaration contains at least
one property/value pair.Together they are
called a CSS Rule.
CSS Selector
body



{font-family:

Arial, Helvetica}"

p {color: #666666}"
h1 {font-size: 24px}"
a {color: blue}


The selector associates css rules with 

HTML elements.
CSS Selector
p {

color: red

}







The selector is typed in front of the declaration,
with a space separating it and the opening
curly-bracket (aka curly-brace).
Typically, extra spaces and returns are added as
shown for the sake of readability.
CSS Selector




h1,h2,h3,h4 {

font-weight: bold

}





You can apply styles to multiple selectors in the
same rule by separating the selectors with
commas.
CSS Declaration




p {

property: value

}




The declaration is always defined in a property/
value pair. The two are separated by a colon.
How you define the properties will affect how
HTML elements are displayed.
CSS Declaration



p {

font-family: Arial, sans-serif;

font-size: 14px;

color: #666666;

}



You can apply multiple declarations to a
selector(s) by separating the delcarations with
semi-colons.
CSS Foundations, pt 1
CSS Selectors
p

Type (element)

#

ID

.

Class
Descendant

Type (element) Selectors



body {declaration}

p {declaration}

h1 {declaration}

ul {declaration}


The simplest selector is the type selector, which
targets an html element by name.
The essential selector types (elements)

Primary

Structure

Body

Elements

Formatting

Elements

html

p

em

body

br

i

h1 – h6

strong

ul

b

ol

q

a

blockquote

img

span

div
Type selectors vs ID & Class selectors

Type selectors use the tag names that are
built into HTML.




ID and class selectors use names that you
define, and are added to html elements
to make them more specific.

Class Selectors



.ingredients {declaration}"
CSS



<ul class=”ingredients”>

HTML

A class is an html attribute that is added to your
html markup. You reference that ID in your css
with a period.
ID Selectors



#logo {declaration}"
CSS



<img id=”logo” src=”” alt=””>

HTML

An ID is an html attribute that is added to your
html markup. You reference that ID in your css
with a hash.
IDs vs Classes


The most important difference between IDs
and classes is that there can be only one ID
on a page, but multiple classes.
An ID is more specific than a class.
An element can have both an ID and
multiple classes.
IDs vs Classes


ID: #344-34-4344
Class: Male
Class: Student

ID: #123-54-9877
Class: Female
Class: Student
Multiple classes

CSS


.ingredients.time {declaration}"
HTML


<div class=”ingredients time”>

<h1></h1>

</div>




Elements can have multiple classes, giving you
more control. The are written in the CSS in the
exact order they appear in the html, with no
spaces.
Combining IDs and classes

CSS


#wrapper.ingredients.time {declaration}"
HTML


<div id=”wrapper” class=”ingredients time”>

<h1></h1>

</div>




Elements can have both ids and classes. While
an element can have only one id, it can have
multiple classes.
Descendant Selectors



.ingredients p {declaration}"
CSS



<div class=”ingredients”>"
HTML

<p></p>"
</div>

A descendant selector is a selector that
combines the selectors of different elements to
target a specific element(s).
CSS Foundations, pt 1
Applying Styles
The Cascade
Inheritance
Specificity

The Cascade

The “cascade” part of CSS is a set of rules
for resolving conflicts with multiple CSS
rules applied to the same elements.
For example, if there are two rules defining
the color or your h1 elements, the rule that
comes last in the cascade order will
“trump” the other. 

low importance

Client (user) stylesheet


Linked (external) stylesheet


high importance

Embedded (internal) stylesheet


Inline (internal) Styles

Inheritance & Specificity

As a designer, your goal is to set an overall
global consistent style, then add in more
specific styles as needed.
You can control how and where your styles are
applied to your HTML by managing their
inheritance and specificity. 

Inheritance

Most elements will inherit many style properties
from their parent elements by default. A parent
is a containing element of a child.
HTML

"




<body>

<div>

<ul>

<li></li>

</ul>

</div>

</body>


relationship

"

parent of site"
parent of ul and li, child of body"
parent of li, child of div and body"
child of ul, div, and body"










!
Inheritance

body

make the paragraph 16px, Verdana, red

p

make the paragraph blue


16px, Verdana, blue

Not all properties are inherited
CSS Foundations, pt 1
Specificity

Shortly after styling your first html elements,
you will find yourself wanting more control over
where your styles are applied.
This is where specificity comes in.




Specificity refers to how specific your selector is
in naming an element. 

Specificity

If you have multiple styles applied to the same
element, the browser goes with whichever
selector is more specific.





Male

Male

Student 


Male 

Student

George
Specificity

body

make the paragraph 16px, Verdana, red

p

make the paragraph blue

p.pink

make the paragraph pink

16px, Verdana, pink

Where specificity gets tricky

The basic concept of specificity is fairly simple:
you target specific elements in your HTML by
listing out more of their identifiers.
For example, if you want to apply a special
style to a paragraph, you need a “hook” in the
html to make it different from every other
paragraph.
Where specificity gets tricky

This can get tricky in your css, because 

the more specific you make your selectors, the
harder it is to manage global styles
(inheritances).



Where specificity gets tricky

Make all text pink.

body {color: pink}


Make all text in the element with the id
“recipe” blue.

#recipe {color: blue}


Make all text in the element with the class
“ingredients” blue.

.ingredients {color: green}


Make all text in the paragraph element
with the class “ingredients” purple.

p.ingredients {color: purple}


Make all text in the paragraph element
with the class “ingredients”, contained in
the element with the id “recipe”, grey.

#recipe p.ingredients {color: grey}"
Where specificity gets tricky

HTML




<div id=”recipe”> 

<p class=”ingredients”>

<div>"
CSS




body {color: pink}

#recipe {color: blue}

.ingredients {color: green}

p.ingredients {color: purple}

#recipe p.ingredients {color: grey}"

!
CSS Foundations, pt 1
Style Declaration: Text
Property Values
color: #444444;
font-family: "Times New Roman", Georgia, serif;
font-size: 16px; (define in px, em, or %)

Style declarations are made of a property and
a value. The type of value you can use
depends on the property. 

There are 5 basic ways of identifying fonts:

Web Safe Fonts

(called font-family in your text)

Font-Face
Service-Based Font-Face
Images
sIFR/Cufon

Web-safe
Web-safe fonts are fonts likely to be present on a wide
range of computer systems, and used by Web content
authors to increase the likelihood that content will be
displayed in their chosen font.
If a visitor to a Web site does not have the specified
font, their browser will attempt to select a similar
alternative, based on the author-specified fallback
fonts and generic families or it will use font
substitution defined in the visitor's operating system.
from http://www.w3schools.com/cssref/css_websafe_fonts.asp
from http://www.w3schools.com/cssref/css_websafe_fonts.asp
Font Stack
The font-family property can hold several font names as a
"fallback" system. If the browser does not support the first
font, it tries the next font.
Start with the font you want, and end with a generic family,
to let the browser pick a similar font in the generic family,
if no other fonts are available.

!
EXAMPLES


body {

font-family: Helvetica, Arial, sans-serif}"
h1 {

“Lato”, Arial, sans-serif}

"
Units of Type Size
There are three different ways to define type sizes in css.
ems

Ems are a relative unit: 1em is equal to the current font size.
The default text size in browsers is 16px. So, the default size
of 1em is 16px.
px

Pixels are a an absolute unit, it sets the text to a specific size
instead of a size relative to the browser’s default. Except in
special cases, you should define pixels in your css with the
number and “px” together, no spaces: “16px”.
%

Like ems, percentages are also a relative unit. It is very useful
for layout, not usually a good idea for type sizes.
Specifying Color
There are three different ways to define color in css.
Hex Codes

This is the most common way to identify colors in CSS. The
code gives two characters to correspond to RGB values. The
number always has 6 characters (#44de42), unless all four
characters are the same, and you can shorten it (#444).
RGB

You can use a color’s RGB values with this syntax: 

p {color: rgb(34,123,125);}
Color Names

There are built-in color names that you can use, that will
provide generic hues: 

p {color: rgb(34,123,125);}
Specifying Color

!

Hexidecimal

RGB
Color: white, black, grey
White = #ffffff, or #fff
Black = #000000, or #000
Greys = #111111 – #999999

CSS Foundations, pt 1
CSS Foundations, pt 1
Type properties to learn now:
color
font-family
font-size
font-weight
font-style
letter-spacing
line-height
text-align
text-transform
Example values:
color: #444444;
font-family: "Times New Roman", Georgia, serif;
font-size: 16px; (define in px, em, or %)
font-weight: bold; (or by number, 400, 700)
font-style: italic;
letter-spacing: .02em;
line-height: 1.6; (relative to whatever your type size is)
text-align: left;




text-transform: uppercase;
CSS Foundations, pt 1
Styling Lists
List styling
Links can be styled just like any text, but have
special properties. The most often used is “liststyle-type”, which allows you to control whether
bullets are used, and how they are styled.
ul {

list-style-type: none;

padding: 0px;

margin: 0px;

}

!
!
!
List styling
By default, <li> elements are block-level elements
(they stack on top of each other). You can force
them to line up in a row by changing the display
property to “inline.”
li {

display: inline;

}

!
!
!
CSS Foundations, pt 1
Styling Links
Link states
Links can be styled just like any text, but have
special pseudo-classes that allow you to define
their behavior.
a {color:#FF0000;}      /* unvisited link */
a:visited {color:#00FF00;}  /* visited link */
a:hover {color:#FF00FF;}  /* mouse over link */
a:active {color:#0000FF;}  /* selected link */
When setting the style for several link states, there
are some order rules:
— a:hover MUST come after a:link and a:visited
— a:active MUST come after a:hover

!
Links
By default, links are underlined. You can turn this off by
changing the “text-decoration” property.
In the example below, the link will only have an underline
when the cursor is hovering over the element.
a {

color:#FF0000;

text-decoration: none;

} 
a:hover {

color:#00FF00;

text-decoration: underline;

} 

!
Class Exercise 9
!

More Related Content

PDF
Web Typography
PDF
Week 2-intro-html
PDF
CSS Foundations, pt 2
PDF
Web Layout
PDF
Images on the Web
PDF
Frontend Crash Course: HTML and CSS
PDF
HTML Foundations, pt 2
PDF
HTML Email
Web Typography
Week 2-intro-html
CSS Foundations, pt 2
Web Layout
Images on the Web
Frontend Crash Course: HTML and CSS
HTML Foundations, pt 2
HTML Email

What's hot (20)

PPT
Advanced Cascading Style Sheets
PPT
Span and Div tags in HTML
PPT
Presentation on html, css
PDF
Html / CSS Presentation
ODP
Introduction of Html/css/js
PDF
Intro to HTML and CSS basics
PDF
Div tag presentation
PDF
Intro to HTML and CSS - Class 2 Slides
PDF
3 Layers of the Web - Part 1
PDF
HTML & CSS Masterclass
PPTX
Web Design Assignment 1
PDF
Class Intro / HTML Basics
DOCX
PHP HTML CSS Notes
PDF
HTML CSS Basics
PDF
HTML and CSS crash course!
PPTX
Cascading style sheet
PPTX
Introduction to web design discussing which languages is used for website des...
PPTX
(Fast) Introduction to HTML & CSS
PPTX
Introduction to HTML
PPTX
Html training slide
Advanced Cascading Style Sheets
Span and Div tags in HTML
Presentation on html, css
Html / CSS Presentation
Introduction of Html/css/js
Intro to HTML and CSS basics
Div tag presentation
Intro to HTML and CSS - Class 2 Slides
3 Layers of the Web - Part 1
HTML & CSS Masterclass
Web Design Assignment 1
Class Intro / HTML Basics
PHP HTML CSS Notes
HTML CSS Basics
HTML and CSS crash course!
Cascading style sheet
Introduction to web design discussing which languages is used for website des...
(Fast) Introduction to HTML & CSS
Introduction to HTML
Html training slide
Ad

Viewers also liked (20)

PDF
Basics of Web Navigation
PDF
10 Usability & UX Guidelines
PDF
Introduction to Responsive Web Design
PDF
Web Design Process
PDF
Intro to Javascript and jQuery
PDF
Creating Images for the Web
PDF
Usability and User Experience
PPT
CSS for Beginners
PPT
Introduction to Cascading Style Sheets (CSS)
PPT
Introduction to CSS
PPT
PPT
Chapter 1 - Web Design
PPT
Cascading Style Sheets (CSS) help
PPTX
Your Presentation is CRAP, and That's Why I Like It
PPTX
PPTX
Principles Of Effective Design
PDF
Basic css-tutorial
PDF
HTML Foundations, pt 3: Forms
PDF
Intro to jQuery
Basics of Web Navigation
10 Usability & UX Guidelines
Introduction to Responsive Web Design
Web Design Process
Intro to Javascript and jQuery
Creating Images for the Web
Usability and User Experience
CSS for Beginners
Introduction to Cascading Style Sheets (CSS)
Introduction to CSS
Chapter 1 - Web Design
Cascading Style Sheets (CSS) help
Your Presentation is CRAP, and That's Why I Like It
Principles Of Effective Design
Basic css-tutorial
HTML Foundations, pt 3: Forms
Intro to jQuery
Ad

Similar to CSS Foundations, pt 1 (20)

PPT
Unit 2-CSS & Bootstrap.ppt
PPT
Rational HATS and CSS
PDF
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
PDF
PPTX
html css js bootstrap framework thisis i
PPTX
Css basics
DOC
Css introduction
PPTX
CSS_Day_ONE (W3schools)
PPT
Cascading Style Sheet
PPTX
chitra
PPT
working with internet technologies using CSS
PPTX
Lecture 3CSS part 1.pptx
DOC
Css introduction
PPT
Chapter 4a cascade style sheet css
PPTX
Workshop 2 Slides.pptx
PPTX
Lecture-6.pptx
DOCX
PDF
Unit 2-CSS & Bootstrap.ppt
Rational HATS and CSS
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
html css js bootstrap framework thisis i
Css basics
Css introduction
CSS_Day_ONE (W3schools)
Cascading Style Sheet
chitra
working with internet technologies using CSS
Lecture 3CSS part 1.pptx
Css introduction
Chapter 4a cascade style sheet css
Workshop 2 Slides.pptx
Lecture-6.pptx

More from Shawn Calvert (12)

PDF
User Centered Design
PDF
Web Design I Syllabus 22 3375-03
PDF
HTML Foundations, part 1
PDF
Web Design 1: Introductions
PDF
22-3530, Photo Communications Syllabus
PDF
An Overview of Stock Photography
PDF
Color Photography
PDF
PSA posters
PDF
Composition & Light
PDF
of Pixels and Bits
PDF
Camera basics
PDF
Typography I syllabus
User Centered Design
Web Design I Syllabus 22 3375-03
HTML Foundations, part 1
Web Design 1: Introductions
22-3530, Photo Communications Syllabus
An Overview of Stock Photography
Color Photography
PSA posters
Composition & Light
of Pixels and Bits
Camera basics
Typography I syllabus

Recently uploaded (20)

PDF
Complications of Minimal Access Surgery at WLH
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPTX
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
RMMM.pdf make it easy to upload and study
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Pharma ospi slides which help in ospi learning
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
Complications of Minimal Access Surgery at WLH
Renaissance Architecture: A Journey from Faith to Humanism
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
Week 4 Term 3 Study Techniques revisited.pptx
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
Abdominal Access Techniques with Prof. Dr. R K Mishra
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
VCE English Exam - Section C Student Revision Booklet
RMMM.pdf make it easy to upload and study
STATICS OF THE RIGID BODIES Hibbelers.pdf
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
human mycosis Human fungal infections are called human mycosis..pptx
Pharma ospi slides which help in ospi learning
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Anesthesia in Laparoscopic Surgery in India
2.FourierTransform-ShortQuestionswithAnswers.pdf

CSS Foundations, pt 1

  • 1. CSS Foundations, pt 1 22-3375 Web Design I // Columbia College Chicago
  • 2. For Starters ! ! Post assignment and blog post Review student blog posts Instructor review of Assign 3 HTML refresher exercise ! !
  • 3. Skills learned so far
 how to create a web directory and link between files Code a basic webpage from scratch how to mark up different types of content with appropriate HTML tags how to use basic HTML attributes to create links and web images how to set up a site domain, server host and install a wordpress site
  • 12. Three layers of web design:
 Structure, Style, Behavior
  • 13. Three layers of web design
  • 14. Three layers of web design
  • 15. Three layers of web design
  • 19. Stylesheet
 A stylesheet is a set of rules defining
 how an html element will be “presented” in the browser. These rules are targeted to specific elements in the html document.

  • 20. The concept is very similar to how you create stylesheets in InDesign.
  • 21. Cascading
 Most pages will have multiple stylesheets that define different styles to the same elements. The cascade defines an ordered sequence of style sheets where rules in later sheets have greater precedence than earlier ones.

  • 22. low importance Client (user) stylesheet
 Linked stylesheet
 high importance Embedded stylesheet
 Inline Styles

  • 23. Stylesheet 1
 make the paragraph 16px, Verdana, red
 Stylesheet 2
 make the paragraph blue
 16px, Verdana, blue

  • 25. How to add css to your document
  • 26. There are 2 basic ways to add styles to your html page:
 External (linked)
 <head> Internal

  • 27. External 
 <head>
 <link rel="stylesheet" type="text/css" href="stylesheet.css">
 </head>
 Except in special circumstances, best practice is to keep all your styles in a separate css document. Linked stylesheets can be applied across multiple documents and sites.
  • 28. Internal (embedded) 
 <head>
 <style> p {color: red} </style>
 </head>
 You can add styles directly into your html page using the “style” element in the <head> of your document. Embedded styles apply ONLY to that 
 html document.
  • 29. Internal (inline) 
 <p style=”color: red”>Red Text</tag>
 You can add styles directly into your html markup using the “style” attribute on opening tag of your element. This is called an “inline” style. Inline styles apply ONLY to that specific instance of the element.
  • 31. Best Practice
 In most cases you should use the external method of adding styles to your html page. Writing the css in the <head> of your document is acceptable if you definitely only want to apply the styles to a single page. However, adding your styles “inline” — inside a html starting tag, e.g. <p style=”font-size: 14px”> — should be avoided. 

  • 32. CSS Syntax Syntax = the rules for how to write the language

  • 33. Three terms for describing your styles: CSS rule CSS selector CSS declaration

  • 34. CSS Rule 
 selector {property: value;}
 declaration
 Every style is defined by a selector and 
 a declaration. The declaration contains at least one property/value pair.Together they are called a CSS Rule.
  • 35. CSS Selector body 
 {font-family: Arial, Helvetica}" p {color: #666666}" h1 {font-size: 24px}" a {color: blue}
 The selector associates css rules with 
 HTML elements.
  • 36. CSS Selector p {
 color: red
 }
 
 
 The selector is typed in front of the declaration, with a space separating it and the opening curly-bracket (aka curly-brace). Typically, extra spaces and returns are added as shown for the sake of readability.
  • 37. CSS Selector 
 h1,h2,h3,h4 {
 font-weight: bold
 }
 
 You can apply styles to multiple selectors in the same rule by separating the selectors with commas.
  • 38. CSS Declaration 
 p {
 property: value
 }
 
 The declaration is always defined in a property/ value pair. The two are separated by a colon. How you define the properties will affect how HTML elements are displayed.
  • 39. CSS Declaration 
 p {
 font-family: Arial, sans-serif;
 font-size: 14px;
 color: #666666;
 }
 
 You can apply multiple declarations to a selector(s) by separating the delcarations with semi-colons.
  • 43. Type (element) Selectors 
 body {declaration}
 p {declaration}
 h1 {declaration}
 ul {declaration}
 The simplest selector is the type selector, which targets an html element by name.
  • 44. The essential selector types (elements)
 Primary
 Structure Body
 Elements Formatting
 Elements html p em body br i h1 – h6 strong ul b ol q a blockquote img span div
  • 45. Type selectors vs ID & Class selectors
 Type selectors use the tag names that are built into HTML. 
 ID and class selectors use names that you define, and are added to html elements to make them more specific.

  • 46. Class Selectors
 
 .ingredients {declaration}" CSS 
 <ul class=”ingredients”>
 HTML A class is an html attribute that is added to your html markup. You reference that ID in your css with a period.
  • 47. ID Selectors
 
 #logo {declaration}" CSS 
 <img id=”logo” src=”” alt=””>
 HTML An ID is an html attribute that is added to your html markup. You reference that ID in your css with a hash.
  • 48. IDs vs Classes
 The most important difference between IDs and classes is that there can be only one ID on a page, but multiple classes. An ID is more specific than a class. An element can have both an ID and multiple classes.
  • 49. IDs vs Classes
 ID: #344-34-4344 Class: Male Class: Student ID: #123-54-9877 Class: Female Class: Student
  • 50. Multiple classes
 CSS
 .ingredients.time {declaration}" HTML
 <div class=”ingredients time”>
 <h1></h1>
 </div>
 
 Elements can have multiple classes, giving you more control. The are written in the CSS in the exact order they appear in the html, with no spaces.
  • 51. Combining IDs and classes
 CSS
 #wrapper.ingredients.time {declaration}" HTML
 <div id=”wrapper” class=”ingredients time”>
 <h1></h1>
 </div>
 
 Elements can have both ids and classes. While an element can have only one id, it can have multiple classes.
  • 52. Descendant Selectors
 
 .ingredients p {declaration}" CSS 
 <div class=”ingredients”>" HTML <p></p>" </div>
 A descendant selector is a selector that combines the selectors of different elements to target a specific element(s).
  • 56. The Cascade
 The “cascade” part of CSS is a set of rules for resolving conflicts with multiple CSS rules applied to the same elements. For example, if there are two rules defining the color or your h1 elements, the rule that comes last in the cascade order will “trump” the other. 

  • 57. low importance Client (user) stylesheet
 Linked (external) stylesheet
 high importance Embedded (internal) stylesheet
 Inline (internal) Styles

  • 58. Inheritance & Specificity
 As a designer, your goal is to set an overall global consistent style, then add in more specific styles as needed. You can control how and where your styles are applied to your HTML by managing their inheritance and specificity. 

  • 59. Inheritance
 Most elements will inherit many style properties from their parent elements by default. A parent is a containing element of a child. HTML " 
 <body>
 <div>
 <ul>
 <li></li>
 </ul>
 </div>
 </body>
 relationship " parent of site" parent of ul and li, child of body" parent of li, child of div and body" child of ul, div, and body" 
 
 
 !
  • 60. Inheritance
 body
 make the paragraph 16px, Verdana, red
 p
 make the paragraph blue
 16px, Verdana, blue

  • 61. Not all properties are inherited
  • 63. Specificity
 Shortly after styling your first html elements, you will find yourself wanting more control over where your styles are applied. This is where specificity comes in. 
 Specificity refers to how specific your selector is in naming an element. 

  • 64. Specificity
 If you have multiple styles applied to the same element, the browser goes with whichever selector is more specific.
 
 Male Male
 Student 
 Male 
 Student
 George
  • 65. Specificity
 body
 make the paragraph 16px, Verdana, red
 p
 make the paragraph blue
 p.pink
 make the paragraph pink
 16px, Verdana, pink

  • 66. Where specificity gets tricky
 The basic concept of specificity is fairly simple: you target specific elements in your HTML by listing out more of their identifiers. For example, if you want to apply a special style to a paragraph, you need a “hook” in the html to make it different from every other paragraph.
  • 67. Where specificity gets tricky
 This can get tricky in your css, because 
 the more specific you make your selectors, the harder it is to manage global styles (inheritances).
  • 68. 
 Where specificity gets tricky
 Make all text pink. body {color: pink}
 Make all text in the element with the id “recipe” blue. #recipe {color: blue}
 Make all text in the element with the class “ingredients” blue. .ingredients {color: green}
 Make all text in the paragraph element with the class “ingredients” purple. p.ingredients {color: purple}
 Make all text in the paragraph element with the class “ingredients”, contained in the element with the id “recipe”, grey. #recipe p.ingredients {color: grey}"
  • 69. Where specificity gets tricky
 HTML 
 <div id=”recipe”> 
 <p class=”ingredients”>
 <div>" CSS 
 body {color: pink}
 #recipe {color: blue}
 .ingredients {color: green}
 p.ingredients {color: purple}
 #recipe p.ingredients {color: grey}" !
  • 72. Property Values color: #444444; font-family: "Times New Roman", Georgia, serif; font-size: 16px; (define in px, em, or %) Style declarations are made of a property and a value. The type of value you can use depends on the property. 

  • 73. There are 5 basic ways of identifying fonts: Web Safe Fonts
 (called font-family in your text) Font-Face Service-Based Font-Face Images sIFR/Cufon

  • 74. Web-safe Web-safe fonts are fonts likely to be present on a wide range of computer systems, and used by Web content authors to increase the likelihood that content will be displayed in their chosen font. If a visitor to a Web site does not have the specified font, their browser will attempt to select a similar alternative, based on the author-specified fallback fonts and generic families or it will use font substitution defined in the visitor's operating system.
  • 77. Font Stack The font-family property can hold several font names as a "fallback" system. If the browser does not support the first font, it tries the next font. Start with the font you want, and end with a generic family, to let the browser pick a similar font in the generic family, if no other fonts are available. ! EXAMPLES
 body {
 font-family: Helvetica, Arial, sans-serif}" h1 {
 “Lato”, Arial, sans-serif} "
  • 78. Units of Type Size There are three different ways to define type sizes in css. ems
 Ems are a relative unit: 1em is equal to the current font size. The default text size in browsers is 16px. So, the default size of 1em is 16px. px
 Pixels are a an absolute unit, it sets the text to a specific size instead of a size relative to the browser’s default. Except in special cases, you should define pixels in your css with the number and “px” together, no spaces: “16px”. %
 Like ems, percentages are also a relative unit. It is very useful for layout, not usually a good idea for type sizes.
  • 79. Specifying Color There are three different ways to define color in css. Hex Codes
 This is the most common way to identify colors in CSS. The code gives two characters to correspond to RGB values. The number always has 6 characters (#44de42), unless all four characters are the same, and you can shorten it (#444). RGB
 You can use a color’s RGB values with this syntax: 
 p {color: rgb(34,123,125);} Color Names
 There are built-in color names that you can use, that will provide generic hues: 
 p {color: rgb(34,123,125);}
  • 81. Color: white, black, grey White = #ffffff, or #fff Black = #000000, or #000 Greys = #111111 – #999999

  • 84. Type properties to learn now: color font-family font-size font-weight font-style letter-spacing line-height text-align text-transform
  • 85. Example values: color: #444444; font-family: "Times New Roman", Georgia, serif; font-size: 16px; (define in px, em, or %) font-weight: bold; (or by number, 400, 700) font-style: italic; letter-spacing: .02em; line-height: 1.6; (relative to whatever your type size is) text-align: left; 
 text-transform: uppercase;
  • 88. List styling Links can be styled just like any text, but have special properties. The most often used is “liststyle-type”, which allows you to control whether bullets are used, and how they are styled. ul {
 list-style-type: none;
 padding: 0px;
 margin: 0px;
 } ! ! !
  • 89. List styling By default, <li> elements are block-level elements (they stack on top of each other). You can force them to line up in a row by changing the display property to “inline.” li {
 display: inline;
 } ! ! !
  • 92. Link states Links can be styled just like any text, but have special pseudo-classes that allow you to define their behavior. a {color:#FF0000;}      /* unvisited link */ a:visited {color:#00FF00;}  /* visited link */ a:hover {color:#FF00FF;}  /* mouse over link */ a:active {color:#0000FF;}  /* selected link */ When setting the style for several link states, there are some order rules: — a:hover MUST come after a:link and a:visited — a:active MUST come after a:hover !
  • 93. Links By default, links are underlined. You can turn this off by changing the “text-decoration” property. In the example below, the link will only have an underline when the cursor is hovering over the element. a {
 color:#FF0000;
 text-decoration: none;
 }  a:hover {
 color:#00FF00;
 text-decoration: underline;
 }  !