SlideShare a Scribd company logo
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

More Related Content

What's hot

Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
Doris Chen
 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSS
Syed Sami
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
Amit Kumar Singh
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
Michael Jhon
 
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
 
CSS
CSSCSS
Css ppt
Css pptCss ppt
Css ppt
Nidhi mishra
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
 
(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 and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
Mario Hernandez
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
WordPress Memphis
 
CSS Introduction
CSS IntroductionCSS Introduction
CSS Introduction
Swati Sharma
 
html-css
html-csshtml-css
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
abhilashagupta
 
Java script
Java scriptJava script
Java script
vishal choudhary
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
Amit Tyagi
 
Advanced Cascading Style Sheets
Advanced Cascading Style SheetsAdvanced Cascading Style Sheets
Advanced Cascading Style Sheets
fantasticdigitaltools
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
Rachel Andrew
 

What's hot (20)

Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSS
 
Css Ppt
Css PptCss Ppt
Css Ppt
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
CSS
CSSCSS
CSS
 
Css ppt
Css pptCss ppt
Css ppt
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
CSS Introduction
CSS IntroductionCSS Introduction
CSS Introduction
 
html-css
html-csshtml-css
html-css
 
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
 
Java script
Java scriptJava script
Java script
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
 
Advanced Cascading Style Sheets
Advanced Cascading Style SheetsAdvanced Cascading Style Sheets
Advanced Cascading Style Sheets
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
 

Similar to CSS Basics

waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
Ismaciil2
 
CSS notes
CSS notesCSS notes
CSS notes
Rajendra Prasad
 
cse labpractical.ppt
cse labpractical.pptcse labpractical.ppt
cse labpractical.ppt
NividitaDarwai
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
VARSHAKUMARI49
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Folasade Adedeji
 
Css1
Css1Css1
Fwd week2 tw-20120903
Fwd week2 tw-20120903Fwd week2 tw-20120903
Fwd week2 tw-20120903TerryWeber
 
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
Digital Shende
 
CSS
CSSCSS
Ict 8 css
Ict 8 cssIct 8 css
Ict 8 css
Christian Reglos
 
Cascading Style Sheet
Cascading Style SheetCascading Style Sheet
Cascading Style Sheet
Meenakshi Paul
 
css-ppt.pdf
css-ppt.pdfcss-ppt.pdf
css-ppt.pdf
EktaDesai14
 
LIS3353 SP12 Week 13
LIS3353 SP12 Week 13LIS3353 SP12 Week 13
LIS3353 SP12 Week 13Amanda Case
 

Similar to CSS Basics (20)

Css1
Css1Css1
Css1
 
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
 
css1.ppt
css1.pptcss1.ppt
css1.ppt
 
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
 
LIS3353 SP12 Week 13
LIS3353 SP12 Week 13LIS3353 SP12 Week 13
LIS3353 SP12 Week 13
 

Recently uploaded

Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
bennyroshan06
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
Steve Thomason
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
EduSkills OECD
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
PedroFerreira53928
 
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdfESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
Fundacja Rozwoju Społeczeństwa Przedsiębiorczego
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
Excellence Foundation for South Sudan
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
Celine George
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 

Recently uploaded (20)

Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdfESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 

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