SlideShare a Scribd company logo
CSS REFRESHER
Styling HTML elements
what is css?
• Cascading Style Sheets
• A set of rules on how to display your
  HTML elements
• Internal documents: embedded in the
  head part of the HTML file
• External documents: something.css
Basic CSS RULE
SELECTORS
• Tag/element: p{color:black;}
  <p>This text will be black</p>

• ID: #alternate {color:green;}
  <p id=“alternate”>This will be
  green</p>

• Class: .another{color:blue;}
  <p class=“another”>While this will
  be blue</p>
MORE SELECTORS
• Element-specific: p.red
                       {color:red;}
  <p class=“red”>This text will be
  red</p>

• Multiple elements: .title,   .head
  {color:pink;}
  <h1 class=“head”>Pink Heading</h1>
  <p class=“title”>Pink Title</p>
HOW to apply CSS

• Internal stylesheet
• External stylesheet
• Inline stylesheet
INTERNAL CSS
<head>
<style type=“text/css”>
p.red {
color:red;
}
</style>
</head>
EXTERNAL CSS

<head>
<link rel=“stylesheet” type=“text/
css” href= “samples.css” />
</head>
INLINE CSS

<a href=“somewhere.html” style=
“color:black;text-size:25px”>
This is a link
</a>
CASCADING
• Elements can inherit rules from
  multiple style sheets
• Inheritance order:
 1. Browser default
 2. External stylesheet
 3. Internal stylesheet
 4. Inline style
Exception!
<head>
<style type=“text/css”>
p.red {
color:red;
}
</style>
<link rel=“stylesheet” type=“text/
css” href= “samples.css” />
</head>
RULES: BACKGROUND
body {
background-color:#000000;
background-image:url(‘bg.gif’);
background-repeat:repeat-y;
background-attachment:scroll;
background-position:right top;
}
RULES: BACKGROUND

body {
background:#000000 url(‘bg.gif’)
repeat-y scroll right top
}
RULES: TEXT
h1 {
color:blue;
text-align:right;
text-decoration:underline;
text-transform:uppercase;
text-indent:50px;
}
RULES: TEXT

h1 {
word-spacing:10px;
line-height:30px;
letter-spacing:-5px;
}
RULES: FONT
p.font {
font-family:“Times New Roman”,
Verdana, Arial;
font-style:italic;
font-size:16px;
font-variant:small-caps;
font-weight:bolder;
}
Web units

• pixel: font-size:32px
• percent: font-size:200%
• em: font-size:2em
LINK STYLES
•   a:link{color:blue;}

•   a:visited{color:green;}

•   a:hover{color:pink;}

•   a:active{color:black;}

More Related Content

What's hot (20)

CSS Basics
CSS BasicsCSS Basics
CSS Basics
WordPress Memphis
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
Mario Hernandez
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
Knoldus Inc.
 
Advanced Cascading Style Sheets
Advanced Cascading Style SheetsAdvanced Cascading Style Sheets
Advanced Cascading Style Sheets
fantasticdigitaltools
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
Dave Kelly
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
eShikshak
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
 
Web Design Assignment 1
Web Design Assignment 1 Web Design Assignment 1
Web Design Assignment 1
beretta21
 
Css
CssCss
Css
jayakarthi
 
Css introduction
Css  introductionCss  introduction
Css introduction
vishnu murthy
 
HTML CSS Basics
HTML CSS BasicsHTML CSS Basics
HTML CSS Basics
Mai Moustafa
 
Html
HtmlHtml
Html
NithyaD5
 
HTML CSS | Computer Science
HTML CSS | Computer ScienceHTML CSS | Computer Science
HTML CSS | Computer Science
Transweb Global Inc
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
Intro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 SlidesIntro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 Slides
Heather Rock
 
Cascading Style Sheet
Cascading Style SheetCascading Style Sheet
Cascading Style Sheet
KushagraChadha1
 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
Amit Tyagi
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Amit Tyagi
 
Week 2-intro-html
Week 2-intro-htmlWeek 2-intro-html
Week 2-intro-html
Shawn Calvert
 
CSS Basics (Cascading Style Sheet)
CSS Basics (Cascading Style Sheet)CSS Basics (Cascading Style Sheet)
CSS Basics (Cascading Style Sheet)
Ajay Khatri
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
Mario Hernandez
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
Knoldus Inc.
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
Dave Kelly
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
eShikshak
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
 
Web Design Assignment 1
Web Design Assignment 1 Web Design Assignment 1
Web Design Assignment 1
beretta21
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
Intro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 SlidesIntro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 Slides
Heather Rock
 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
Amit Tyagi
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Amit Tyagi
 
CSS Basics (Cascading Style Sheet)
CSS Basics (Cascading Style Sheet)CSS Basics (Cascading Style Sheet)
CSS Basics (Cascading Style Sheet)
Ajay Khatri
 

Similar to CSS Refresher (20)

cascadingstylesheets,introduction.css styles-210909054722.pptx
cascadingstylesheets,introduction.css styles-210909054722.pptxcascadingstylesheets,introduction.css styles-210909054722.pptx
cascadingstylesheets,introduction.css styles-210909054722.pptx
hannahroseline2
 
Unit III CSS & JAVA Script.pdf
Unit III CSS & JAVA Script.pdfUnit III CSS & JAVA Script.pdf
Unit III CSS & JAVA Script.pdf
meghana092
 
Css
CssCss
Css
veena parihar
 
What is CSS.pptx power point presentation
What is CSS.pptx power point presentationWhat is CSS.pptx power point presentation
What is CSS.pptx power point presentation
Coderkids
 
CSS____4563276__HTML___________0989.pptx
CSS____4563276__HTML___________0989.pptxCSS____4563276__HTML___________0989.pptx
CSS____4563276__HTML___________0989.pptx
Ajanya5
 
4_css_intro.pptx. this ppt is based on css which is the required of web deve...
4_css_intro.pptx.  this ppt is based on css which is the required of web deve...4_css_intro.pptx.  this ppt is based on css which is the required of web deve...
4_css_intro.pptx. this ppt is based on css which is the required of web deve...
sindwanigripsi
 
chitra
chitrachitra
chitra
sweet chitra
 
properties of css.pptx power pointpresentation
properties of css.pptx power pointpresentationproperties of css.pptx power pointpresentation
properties of css.pptx power pointpresentation
Coderkids
 
BITM3730 9-20.pptx
BITM3730 9-20.pptxBITM3730 9-20.pptx
BITM3730 9-20.pptx
MattMarino13
 
BITM3730 9-19.pptx
BITM3730 9-19.pptxBITM3730 9-19.pptx
BITM3730 9-19.pptx
MattMarino13
 
Cascading style sheets
Cascading style sheetsCascading style sheets
Cascading style sheets
smithaps4
 
it-150608145445-lva1-app6891Unit_3 .pptx
it-150608145445-lva1-app6891Unit_3 .pptxit-150608145445-lva1-app6891Unit_3 .pptx
it-150608145445-lva1-app6891Unit_3 .pptx
Shwetamaurya36
 
Cascading style sheets
Cascading style sheetsCascading style sheets
Cascading style sheets
smitha273566
 
CSS-ppt.pptx f df dff dfvdfv fdvfdfddf dfv df
CSS-ppt.pptx f df dff dfvdfv fdvfdfddf dfv dfCSS-ppt.pptx f df dff dfvdfv fdvfdfddf dfv df
CSS-ppt.pptx f df dff dfvdfv fdvfdfddf dfv df
drpreetiwctm
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Shehzad Yaqoob
 
Css mod1
Css mod1Css mod1
Css mod1
VARSHAKUMARI49
 
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
 
CSS (Cascading Style Sheet)
CSS (Cascading Style Sheet)CSS (Cascading Style Sheet)
CSS (Cascading Style Sheet)
Harshit Srivastava
 
basic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdfbasic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdf
elayelily
 
Lecture-6.pptx
Lecture-6.pptxLecture-6.pptx
Lecture-6.pptx
vishal choudhary
 
cascadingstylesheets,introduction.css styles-210909054722.pptx
cascadingstylesheets,introduction.css styles-210909054722.pptxcascadingstylesheets,introduction.css styles-210909054722.pptx
cascadingstylesheets,introduction.css styles-210909054722.pptx
hannahroseline2
 
Unit III CSS & JAVA Script.pdf
Unit III CSS & JAVA Script.pdfUnit III CSS & JAVA Script.pdf
Unit III CSS & JAVA Script.pdf
meghana092
 
What is CSS.pptx power point presentation
What is CSS.pptx power point presentationWhat is CSS.pptx power point presentation
What is CSS.pptx power point presentation
Coderkids
 
CSS____4563276__HTML___________0989.pptx
CSS____4563276__HTML___________0989.pptxCSS____4563276__HTML___________0989.pptx
CSS____4563276__HTML___________0989.pptx
Ajanya5
 
4_css_intro.pptx. this ppt is based on css which is the required of web deve...
4_css_intro.pptx.  this ppt is based on css which is the required of web deve...4_css_intro.pptx.  this ppt is based on css which is the required of web deve...
4_css_intro.pptx. this ppt is based on css which is the required of web deve...
sindwanigripsi
 
properties of css.pptx power pointpresentation
properties of css.pptx power pointpresentationproperties of css.pptx power pointpresentation
properties of css.pptx power pointpresentation
Coderkids
 
BITM3730 9-20.pptx
BITM3730 9-20.pptxBITM3730 9-20.pptx
BITM3730 9-20.pptx
MattMarino13
 
BITM3730 9-19.pptx
BITM3730 9-19.pptxBITM3730 9-19.pptx
BITM3730 9-19.pptx
MattMarino13
 
Cascading style sheets
Cascading style sheetsCascading style sheets
Cascading style sheets
smithaps4
 
it-150608145445-lva1-app6891Unit_3 .pptx
it-150608145445-lva1-app6891Unit_3 .pptxit-150608145445-lva1-app6891Unit_3 .pptx
it-150608145445-lva1-app6891Unit_3 .pptx
Shwetamaurya36
 
Cascading style sheets
Cascading style sheetsCascading style sheets
Cascading style sheets
smitha273566
 
CSS-ppt.pptx f df dff dfvdfv fdvfdfddf dfv df
CSS-ppt.pptx f df dff dfvdfv fdvfdfddf dfv dfCSS-ppt.pptx f df dff dfvdfv fdvfdfddf dfv df
CSS-ppt.pptx f df dff dfvdfv fdvfdfddf dfv df
drpreetiwctm
 
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
 
basic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdfbasic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdf
elayelily
 

More from Gerson Abesamis (20)

YMSAT Project Proposal Form
YMSAT Project Proposal FormYMSAT Project Proposal Form
YMSAT Project Proposal Form
Gerson Abesamis
 
YMSAT Student Primer
YMSAT Student PrimerYMSAT Student Primer
YMSAT Student Primer
Gerson Abesamis
 
Final Project
Final ProjectFinal Project
Final Project
Gerson Abesamis
 
960 Grid System
960 Grid System960 Grid System
960 Grid System
Gerson Abesamis
 
CSS Box Model
CSS Box ModelCSS Box Model
CSS Box Model
Gerson Abesamis
 
Photography Orientation 11-12
Photography Orientation 11-12Photography Orientation 11-12
Photography Orientation 11-12
Gerson Abesamis
 
WebDev2 Orientation 11-12
WebDev2 Orientation 11-12WebDev2 Orientation 11-12
WebDev2 Orientation 11-12
Gerson Abesamis
 
Photography Class 11-12
Photography Class 11-12Photography Class 11-12
Photography Class 11-12
Gerson Abesamis
 
Prewar report
Prewar reportPrewar report
Prewar report
Gerson Abesamis
 
Web Typography
Web TypographyWeb Typography
Web Typography
Gerson Abesamis
 
Typographic Contrast
Typographic ContrastTypographic Contrast
Typographic Contrast
Gerson Abesamis
 
WebDev Template Finals
WebDev Template FinalsWebDev Template Finals
WebDev Template Finals
Gerson Abesamis
 
Css positioning
Css positioningCss positioning
Css positioning
Gerson Abesamis
 
Pinhole photography vale
Pinhole photography valePinhole photography vale
Pinhole photography vale
Gerson Abesamis
 
CSS Box Model and Dimensions
CSS Box Model and DimensionsCSS Box Model and Dimensions
CSS Box Model and Dimensions
Gerson Abesamis
 
Interface Design
Interface DesignInterface Design
Interface Design
Gerson Abesamis
 
CSS Lists and Tables
CSS Lists and TablesCSS Lists and Tables
CSS Lists and Tables
Gerson Abesamis
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
Gerson Abesamis
 
Information Architecture
Information ArchitectureInformation Architecture
Information Architecture
Gerson Abesamis
 

CSS Refresher