SlideShare uma empresa Scribd logo
1 de 23
By Super Coder
Cascading Style Sheet (CSS)
Tutorial
Topics
●
Introduction
●
Syntax
●
Selector
●
Using CSS in HTML Pages
●
CSS Rules
●
CSS Fonts
●
CSS Text Formating
●
CSS Box Model
●
CSS Backgrounds
●
CSS Normal and Beyond Flow
●
CSS Positioning
Introduction
Cascading Style Sheets (CSS) Applies to HTML
Pages For Designing the Layout and View
Appearance of Your Website.
A styled HTML document
produced by the CSS
body { background: yellow; }
p { color: red;font-size: 20px; }
Color Font
Using Css
Color
Background
Introduction
Complete Example
<!DOCTYPE html>
<html>
<head>
<title>CSS Style</title>
<style type="text/css">
body { background: yellow; }
p { color: red;font-size: 20px; }
</style>
</head>
<body>
<p>Hello World</p>
</body>
</html>
Opening CSS Styles
CSS Property name
CSS Property Value
CSS Selector
Closing CSS Stylesheet
CSS Syntax
CSS Properties and Values Syntax For Selecting HTML
Element
p {
font-size: 20px ;
background:red;
}
Css Properties
Values
Closing Braces all Propety
Values of p Enclosed insides
Braces
Opening Braces
HTML Paragraph
CSS Selector
CSS Properties
Names
CSS Syntax
css selector { property-name:values }
Css Selector - HTML Dom Elements Selecting By Elements
Tag,Class name or By id.
Property-name : background , font-size , color , text-alignment etc.
Property -values : orange , 17px, center, etc.
CSS Syntax
CSS Selector Syntax HTML Elements Which Selected By CSS
Only Select li element which parent is ul
<h1>Hello H1<h1><h2>Hello H2<h2><h3>Hello H3<h3>
<p>Hello World! I Select All p Tag Elements</p>
Multi Element Type – h1,h2,h3 { background : orange }
Single Element Type - p { color:red; }
All Element Type - * { padding:5px; } <p>selected me</p> <h2>Selected me</p>
Element By id ( # ) - #p1 , #p2 { marging:5px } <p id=”p1”>paragraph1</p><p id=”p2”>paragraph2</p>
Element By Class ( . )- .p1,.h1 { color :seagreen; } <p class=”p1>Class p1</p><h1 class=”h1”>Heading
1</h1>
Element with class – p.p1 { font-style:italic; } <p class=”p1>Only Select me</p><p class=”p2”>Not Select me</p>
Descendents Selector – ul li { color : green; } <ul><li>select me</li><li>select me</li></ul>
Using CSS in HTML Pages
We Can Use CSS in HTML Pages in 3 ways: -
● Inline css
E.g
● Internal CSS
E.g
<p style=”color:red”>I am a inline CSS Style Paragaraph Tag</p>
<html>
<head>
<style> p { color:red; } </style>
<!----Internal CSS--->
</head>
<body>
<p> My Color Changed By Internal CSS</p>
</body>
</html>
Using CSS in HTML Pages
● External CSS
<html>
<head>
<link rel=”stylesheet”
href=”style.css”>
<!---Linking External CSS Using
Href-->
</head>
<body>
<p>My Style Changed By External
CSS style.css</p>
</body>
</html>
style.css
-----------------------------------------------------
p{color:red;}
h1{color:blue;}
As a Developer i Not Prefered To Using Inline
CSS .use minimum inline CSS Try to Use CSS
Externally or Internally Because managing all
element style easy.
You think what you like to edit?
100 time paragraph tag style?
Or
Just 1 change in External CSS
CSS Rules
Now What happened If Multiple Style Comes To Same
Elements ?
● E.g : - in Internal i add
p{ color :red; }
– And in External I add
p{ color:black;}
Then Here is a Some Rules Which we See How It Works And Whom It
Select.
CSS Rules
● Important ( <p style=’color:red!important’>Important</p>)
This always Comes First when we Selecting Element whether any
internal external or inline css added important works first.
● Inline css (we already see inline css above)
This comes in Second Position.
● Now Inline and External Had Some Different Case.
Rule with selector :
1. ID
2. class
3. descendant/element type
4. universal
5. HTML attribute
This Rules Followed By Internal and
External but Internal Always Comes First
Then External
CSS Fonts
● CSS font is Very important part of CSS for Customizing Fonts
in Our Webpage. We Can Customize this fonts using Css.
● Change Font Weight
● Change Color
● Change line height (line gap between paragraph)
● Change Font Size
● Font Style
CSS Fonts
Example: -
<!DOCTYPE html>
<html>
<head>
<title>CSS Style</title>
<style type="text/css">
#p1 { color: red;font-size: 20px; }
#p2{ font-family: sans-serif; line-height: 40px; }
#p3{ font-style: italic;font-weight: 600; }
</style>
</head>
<body>
<p id="p1">I am p1 text with css font property color red and font size 20px </p>
<p id="p2">I am p2 text with css font property font family sans-serif and line height 20px</p>
<p id="p3">I am p3 with css property font style italic and font weight 600</p>
</body>
</html>
CSS Fonts
Font Color Red
Line Height is 40px
Font Style is Italic
Font Size is 20px
Font family Sans-serif
Font Weight is 600
Is likely to Bold text
CSS Text
We Used CSS Text To Color, align, transform etc
with text.
Like Aligning Text to Center
Change Letter To UpperCase
Change Color of Text and Much More.
CSS Text
Lets See Some Property and its Values of CSS Text.
●
color – which is used to change color of text. Values like (white,red,#FFF(Hexacolor)).
●
text-align : - used for aligning text values Like (left,right,center,justify).
●
text-decoration : - used for decorating text Values like (underline,overline,line-through).
●
text-transform : - used for changing case values like (uppercase,lowercase,capitalize).
●
text-indent : - used for left some space before start paragraph value is in px (0px,10px...).
●
letter-spacing : - used for adjust space between letters values in px (0px,10px...).
●
line-height : used for adjust line between text value in unit (1.2 ,1.5 ,2.... ).
●
direction – used to change direction of text value like (rtl)
●
word-spacing : - adjust space between words value in px like ( 10px,15px ...)
●
text-shadow : text shadow contain multi values for adjusting shadow and color see in e.g.
CSS Text
Example Code :
<!DOCTYPE html>
<html>
<head>
<title>CSS Text</title>
<style type="text/css">
#p1{ color:red; }
#p2{ text-align: center; }
#p3{ text-decoration: underline; }
#p4 { text-transform: uppercase; }
#p5 { text-indent: 50px; }
#p6{ letter-spacing: 20px; }
#p7 { line-height: 1.5; }
#p8 { direction: rtl; }
#p9{ word-spacing: 10px; }
#p10 { text-shadow: 3px 2px red; }
</style>
</head>
<body>
<p id="p1">Red Color Text</p>
<p id="p2">Center Align Text</p>
<p id="p3">Decorated Text like Underline</p>
<p id="p4">Transform To Uppercase</p>
<p id="p5">Text Indent which left some margin on beginning of first line</p>
<p id="p6">This is Line of paragraph with space of letter is 20px </p>
<p id="p7">This is Text which i increase line height and break <br>for line breaking to understand that height is <br>increase between paragraph</p>
<p id="p8">This is Text which direction is change</p>
<p id="p9">This is paragraph which word spacing is different then other paragraph words</p>
<p id="p10">This is a line of paragraph which had a shadow effect on text</p>
</body>
</html>
CSS Text
Color
Decorated Text
This is Text indent
Line height increased
Align Text
Letter Spacing u see
Direction Changed
Word Space increased
Multi value used for
Shadow and color
CSS Box Model
All elements in HTML can be considered as boxes. In
CSS, the term "box model" is used when talking about
design and layout.
Css BOX Model is Wraps HTML elements.It consists
of: margins, borders, padding, and the content.
CSS Box Model
Margin
Border
Padding
Body Contents Come Here
CSS BOX Model Example
<!DOCTYPE html>
<html>
<head>
<title>Box Model</title>
<style type="text/css">
body{
padding: 10px;
background: red;
}
#box{
margin: 20px;
padding: 20px;
border:10px solid yellow;
}
</style>
</head>
<body>
<div id="box">
<p>I m inside a box Model</p>
</div>
</body>
</html>
CSS Box Model Example
● Result in Simple. ● Result Displaying All Layers.
BODYBODY MarginMargin
BorderBorder PaddingPadding
MarginMargin
PaddingPadding
BorderBorder
BODYBODY
CSS Basics

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Css Ppt
Css PptCss Ppt
Css Ppt
 
Html
HtmlHtml
Html
 
CSS
CSSCSS
CSS
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
 
1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introduction
 
Javascript
JavascriptJavascript
Javascript
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
HTML and CSS crash course!
HTML and CSS crash course!HTML and CSS crash course!
HTML and CSS crash course!
 
CSS - Text Properties
CSS - Text PropertiesCSS - Text Properties
CSS - Text Properties
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
 
Advanced Cascading Style Sheets
Advanced Cascading Style SheetsAdvanced Cascading Style Sheets
Advanced Cascading Style Sheets
 
Javascript 101
Javascript 101Javascript 101
Javascript 101
 
Basic-CSS-tutorial
Basic-CSS-tutorialBasic-CSS-tutorial
Basic-CSS-tutorial
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
 
Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) help
 
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
 
Html ppt
Html pptHtml ppt
Html ppt
 
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
 

Semelhante a CSS Basics (20)

Css1
Css1Css1
Css1
 
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
 
css1.ppt
css1.pptcss1.ppt
css1.ppt
 
html-css
html-csshtml-css
html-css
 
CSS notes
CSS notesCSS notes
CSS notes
 
Turorial css
Turorial cssTurorial css
Turorial css
 
cse labpractical.ppt
cse labpractical.pptcse labpractical.ppt
cse labpractical.ppt
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
Css1
Css1Css1
Css1
 
CSS.pptx
CSS.pptxCSS.pptx
CSS.pptx
 
Css1
Css1Css1
Css1
 
Fwd week2 tw-20120903
Fwd week2 tw-20120903Fwd week2 tw-20120903
Fwd week2 tw-20120903
 
Css presentation introdution with sample basic projects
Css presentation introdution with sample basic projectsCss presentation introdution with sample basic projects
Css presentation introdution with sample basic projects
 
CSS
CSSCSS
CSS
 
Ict 8 css
Ict 8 cssIct 8 css
Ict 8 css
 
CSS
CSSCSS
CSS
 
CSS
CSSCSS
CSS
 
Cascading Style Sheet
Cascading Style SheetCascading Style Sheet
Cascading Style Sheet
 
css-ppt.pdf
css-ppt.pdfcss-ppt.pdf
css-ppt.pdf
 

Último

TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 

Último (20)

TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 

CSS Basics

  • 1. By Super Coder Cascading Style Sheet (CSS) Tutorial
  • 2. Topics ● Introduction ● Syntax ● Selector ● Using CSS in HTML Pages ● CSS Rules ● CSS Fonts ● CSS Text Formating ● CSS Box Model ● CSS Backgrounds ● CSS Normal and Beyond Flow ● CSS Positioning
  • 3. Introduction Cascading Style Sheets (CSS) Applies to HTML Pages For Designing the Layout and View Appearance of Your Website. A styled HTML document produced by the CSS body { background: yellow; } p { color: red;font-size: 20px; } Color Font Using Css Color Background
  • 4. Introduction Complete Example <!DOCTYPE html> <html> <head> <title>CSS Style</title> <style type="text/css"> body { background: yellow; } p { color: red;font-size: 20px; } </style> </head> <body> <p>Hello World</p> </body> </html> Opening CSS Styles CSS Property name CSS Property Value CSS Selector Closing CSS Stylesheet
  • 5. CSS Syntax CSS Properties and Values Syntax For Selecting HTML Element p { font-size: 20px ; background:red; } Css Properties Values Closing Braces all Propety Values of p Enclosed insides Braces Opening Braces HTML Paragraph CSS Selector CSS Properties Names
  • 6. CSS Syntax css selector { property-name:values } Css Selector - HTML Dom Elements Selecting By Elements Tag,Class name or By id. Property-name : background , font-size , color , text-alignment etc. Property -values : orange , 17px, center, etc.
  • 7. CSS Syntax CSS Selector Syntax HTML Elements Which Selected By CSS Only Select li element which parent is ul <h1>Hello H1<h1><h2>Hello H2<h2><h3>Hello H3<h3> <p>Hello World! I Select All p Tag Elements</p> Multi Element Type – h1,h2,h3 { background : orange } Single Element Type - p { color:red; } All Element Type - * { padding:5px; } <p>selected me</p> <h2>Selected me</p> Element By id ( # ) - #p1 , #p2 { marging:5px } <p id=”p1”>paragraph1</p><p id=”p2”>paragraph2</p> Element By Class ( . )- .p1,.h1 { color :seagreen; } <p class=”p1>Class p1</p><h1 class=”h1”>Heading 1</h1> Element with class – p.p1 { font-style:italic; } <p class=”p1>Only Select me</p><p class=”p2”>Not Select me</p> Descendents Selector – ul li { color : green; } <ul><li>select me</li><li>select me</li></ul>
  • 8. Using CSS in HTML Pages We Can Use CSS in HTML Pages in 3 ways: - ● Inline css E.g ● Internal CSS E.g <p style=”color:red”>I am a inline CSS Style Paragaraph Tag</p> <html> <head> <style> p { color:red; } </style> <!----Internal CSS---> </head> <body> <p> My Color Changed By Internal CSS</p> </body> </html>
  • 9. Using CSS in HTML Pages ● External CSS <html> <head> <link rel=”stylesheet” href=”style.css”> <!---Linking External CSS Using Href--> </head> <body> <p>My Style Changed By External CSS style.css</p> </body> </html> style.css ----------------------------------------------------- p{color:red;} h1{color:blue;} As a Developer i Not Prefered To Using Inline CSS .use minimum inline CSS Try to Use CSS Externally or Internally Because managing all element style easy. You think what you like to edit? 100 time paragraph tag style? Or Just 1 change in External CSS
  • 10. CSS Rules Now What happened If Multiple Style Comes To Same Elements ? ● E.g : - in Internal i add p{ color :red; } – And in External I add p{ color:black;} Then Here is a Some Rules Which we See How It Works And Whom It Select.
  • 11. CSS Rules ● Important ( <p style=’color:red!important’>Important</p>) This always Comes First when we Selecting Element whether any internal external or inline css added important works first. ● Inline css (we already see inline css above) This comes in Second Position. ● Now Inline and External Had Some Different Case. Rule with selector : 1. ID 2. class 3. descendant/element type 4. universal 5. HTML attribute This Rules Followed By Internal and External but Internal Always Comes First Then External
  • 12. CSS Fonts ● CSS font is Very important part of CSS for Customizing Fonts in Our Webpage. We Can Customize this fonts using Css. ● Change Font Weight ● Change Color ● Change line height (line gap between paragraph) ● Change Font Size ● Font Style
  • 13. CSS Fonts Example: - <!DOCTYPE html> <html> <head> <title>CSS Style</title> <style type="text/css"> #p1 { color: red;font-size: 20px; } #p2{ font-family: sans-serif; line-height: 40px; } #p3{ font-style: italic;font-weight: 600; } </style> </head> <body> <p id="p1">I am p1 text with css font property color red and font size 20px </p> <p id="p2">I am p2 text with css font property font family sans-serif and line height 20px</p> <p id="p3">I am p3 with css property font style italic and font weight 600</p> </body> </html>
  • 14. CSS Fonts Font Color Red Line Height is 40px Font Style is Italic Font Size is 20px Font family Sans-serif Font Weight is 600 Is likely to Bold text
  • 15. CSS Text We Used CSS Text To Color, align, transform etc with text. Like Aligning Text to Center Change Letter To UpperCase Change Color of Text and Much More.
  • 16. CSS Text Lets See Some Property and its Values of CSS Text. ● color – which is used to change color of text. Values like (white,red,#FFF(Hexacolor)). ● text-align : - used for aligning text values Like (left,right,center,justify). ● text-decoration : - used for decorating text Values like (underline,overline,line-through). ● text-transform : - used for changing case values like (uppercase,lowercase,capitalize). ● text-indent : - used for left some space before start paragraph value is in px (0px,10px...). ● letter-spacing : - used for adjust space between letters values in px (0px,10px...). ● line-height : used for adjust line between text value in unit (1.2 ,1.5 ,2.... ). ● direction – used to change direction of text value like (rtl) ● word-spacing : - adjust space between words value in px like ( 10px,15px ...) ● text-shadow : text shadow contain multi values for adjusting shadow and color see in e.g.
  • 17. CSS Text Example Code : <!DOCTYPE html> <html> <head> <title>CSS Text</title> <style type="text/css"> #p1{ color:red; } #p2{ text-align: center; } #p3{ text-decoration: underline; } #p4 { text-transform: uppercase; } #p5 { text-indent: 50px; } #p6{ letter-spacing: 20px; } #p7 { line-height: 1.5; } #p8 { direction: rtl; } #p9{ word-spacing: 10px; } #p10 { text-shadow: 3px 2px red; } </style> </head> <body> <p id="p1">Red Color Text</p> <p id="p2">Center Align Text</p> <p id="p3">Decorated Text like Underline</p> <p id="p4">Transform To Uppercase</p> <p id="p5">Text Indent which left some margin on beginning of first line</p> <p id="p6">This is Line of paragraph with space of letter is 20px </p> <p id="p7">This is Text which i increase line height and break <br>for line breaking to understand that height is <br>increase between paragraph</p> <p id="p8">This is Text which direction is change</p> <p id="p9">This is paragraph which word spacing is different then other paragraph words</p> <p id="p10">This is a line of paragraph which had a shadow effect on text</p> </body> </html>
  • 18. CSS Text Color Decorated Text This is Text indent Line height increased Align Text Letter Spacing u see Direction Changed Word Space increased Multi value used for Shadow and color
  • 19. CSS Box Model All elements in HTML can be considered as boxes. In CSS, the term "box model" is used when talking about design and layout. Css BOX Model is Wraps HTML elements.It consists of: margins, borders, padding, and the content.
  • 21. CSS BOX Model Example <!DOCTYPE html> <html> <head> <title>Box Model</title> <style type="text/css"> body{ padding: 10px; background: red; } #box{ margin: 20px; padding: 20px; border:10px solid yellow; } </style> </head> <body> <div id="box"> <p>I m inside a box Model</p> </div> </body> </html>
  • 22. CSS Box Model Example ● Result in Simple. ● Result Displaying All Layers. BODYBODY MarginMargin BorderBorder PaddingPadding MarginMargin PaddingPadding BorderBorder BODYBODY