SlideShare une entreprise Scribd logo
1  sur  33
CSS
Cascading Style Sheet
WHAT IS CSS?
CSS stands for “Cascading Style Sheets”
Cascading refers to the procedure that determines which style will apply
to a certain section, if you have more than one style rule.
Style how you want a certain part of your page to look. You can set
things like color, margins, font, etc for things like tables, paragraphs,
and headings.
Sheets the “sheets” are like templates, or a set of rules, for determining how
the webpage will look.
CSS is a stylesheet language used to describe the presentation of a document
written in HTML or XML.
Why Use CSS?
• CSS is used to define styles for your web
pages, including the design, layout and
variations in display for different devices
and screen sizes.
• A web application will contains hundreds of web pages, which are created
using HTML.
• Formatting these HTML pages will be a laborious process, as
formatting elements need to be applied to each and every page.
• CSS saves lots of work as we can change the appearance and layout of all
the web pages by editing just one single CSS file.
Advantages
CSS Syntax
• A CSS rule-set consists of a selector and a declaration
block:
• The selector points to the HTML element you
want to style.
• The declaration block contains one or more declarations
separated by semicolons.
• Each declaration includes a CSS property name and a value,
separated by a colon.
• Multiple CSS declarations are separated with semicolons, and
declaration blocks are surrounded by curly braces.
Example
In this example all <p> elements will be center-aligned, with a
red text color:
p {
color : red ;
text-align : center;
}
Example Explained
•p is a selector in CSS .
•color is a property, and red is the property value
•text-align is a property, and center is the property value
CSS Example
CSS Syntax Rules
Rule have two parts - Selector and declaration.
Selector The HTML element you want to add style to.
<p> <h1> <table> etc
Declaration The statement of style for that element. Made up of
property andvalue.
Property
Declaration
V
alue
Rules
Selector
Declaration
p { font-family : Arial ; }
EXAMPLE
<html>
<head>
<style> p {font-family:Arial;
color: red;
background-color:black;}
</style>
</head>
<body>
<p> <b> Welcome to Coder Decoder</b>
</p>
</body>
</html>
Welcome to Coder Decoder
Selector - I want the text color of my paragraph to be red and the background color to be black.
CSS SELECTORS
Declaring a CSS Rule for a Elements Attribute
It will style all the content of that element which you are selecting.
Example
The HTML
<p>
Welcome to the Coder Decoder
</p>
<p>
<b><i> Powered by – Dhirendra Chauhan</i></b>
</p>
The CSS
p {text-align: center; color: blue;}
CSS SELECTORS
Grouping Selectors
You can group all the selectors of same style to minimize the code. The
selectors should be separated with comma.
Example
h2 {text-align: center; color: red; }
p {text-align: center; color: red;}
Grouped Selectors
h2, p { text-align: center; color: red; }
INSERTING A STYLESHEET
Three different ways
1. External Style Sheet
2. Internal Style Sheet
3. Inline Styles
Inline CSS
Inline CSS contains the CSS property in the body section
attached with element is known as inline CSS. This kind of style
is specified within an HTML tag using the style attribute.
<html>
<head>
<title>Inline CSS</title>
</head>
<body>
<p style = "color:#009900; font-size:50px; font-style:italic; text-align:center;">
Coder Decoder
</p>
</body>
</html> Coder Decoder
Internal or Embedded CSS
An internal stylesheet holds CSS rules for the page in the
head section of the HTML file. The rules only apply to that
page, but we can configure CSS classes and IDs that can be used
to style multiple elements in the page code.
<head>
<style type =“text / css”>
h3 { font-style:bold; font-size:20px; }
</style>
</head>
<html>
<head>
<title>Internal CSS</title>
<style>
.main { text-align:center; }
.coder { font-style:bold; font-size:20px; }
</style>
</head>
<body>
<div class = "main">
<div class ="GFG">Mount Abu</div>
<div class =“coder">
A computer science portal for Class X
</div>
</div>
</body>
</html>
External CSS
External CSS contains separate CSS file which contains only style
property with the help of tag attributes ( For example class, id,
heading, … etc ).
An external ( also called linked ) style sheet carries essentially the
same information as an internal style sheet in the sense that external
style sheet is contained inn its own text file ( having extension .css )
<html>
<head>
<link rel="stylesheet" href="mystyle.css">
</head>
<body>
<h1>Coder Decoder</h1>
<p>This is a my Channel.</p>
</body>
</html>
"mystyle.css"
body {
background-color: lightblue;
}
h1 {
color: navy;
margin-left: 20px;
}
Example
CSS PROPERTIES
CSS Background
We can use CSS Background properties to define the background effects of an
element. The following properties can be used for background effects :
a. background-color
b. background-image
c. background-repeat
d. background-position
CSS Background Image
You can use an image as the background for an element using background-
image property.
Example:-
body{
background-image : url(‘java.png’);
}
CSS PROPERTIES
CSS Background Color
The background-color property is used to specify the background color of an
element.
Example:
body {
background-color : darkblue;
}
p {
background-color : orange;
}
CSS PROPERTIES
CSS Background Position
If the background image disturbs the text, i.e. if the text cannot be read clearly due to the
image in the background, we can set the position of the background image.
Example:
body {
background-image :url(“CoderDecoder.jpg");
background-repeat : no-repeat;
background-position :right top;
}
CSS PROPERTIES
Text Alignment
We can either align the text to the left, right, center or we can make it justified.
Example-
p { text-align : left;}
h1{text-align : center;}
Text Color
The color property is used to set the color of text.
Example-
body{ color : blue;}
p1 { color : magenta;}
CSS PROPERTIES
Text Formatting
The following properties can be used for formatting text :
1. Text Color
2. Text Alignment
3. Text Decoration
4. Text Transformation
5. Text Indentation
CSS PROPERTIES
Text Decoration
You can use text-decoration property to set or remove decorations from text.
Example-
p {text-decoration:overline;}
p {text-decoration:line-through;}
p {text-decoration:underline;}
Text Transformation
You can use text-transform property to specify uppercase and lowercase letters of any
text.
Example-
h1 {text-transform:uppercase;}
h2 {text-transform:lowercase;}
p {text-transform:capitalize;}
CSS PROPERTIES
CSS Font Size
You can use the font-size property to set the size of text. The font-size value can be
absolute or it can be relative.
Example
h1 {
font-size: 30px;
}
p {
font-size: 14px;
}
CSS PROPERTIES
CSS Links
You can use CSSstyles to style any link. Links can be styled in different waysby
using any CSSproperty like color, font-family etc.
Links can be in one of the following states :
 a : link – Unvisited link
 a : visited – Alink that the user has visited
 a : hover – Alink over which the mouse pointer is moving
 a : active – Alink, which has been just clicked
CSS PROPERTIES
CSS Links
a { font-weight: bold; }
a : link { color: black; }
a : visited { color : gray; }
a:hover {
text-decoration: none;
color: white;
background-color: navy;
}
a : active {
color: aqua;
background-color : navy;
}
Styling Links
link - before a visit
visited - after it has been visited
hover - when your mouse is over it but you have
not clicked
active - you have clicked it and you have not yet
seen the new page
CSS PROPERTIES
CSS List
We can use CSSlist properties for
 Setting different list item markers for ordered lists
 Setting different list item markers for unordered lists
 Set an image as the list item marker
Values
 list-style-type
 list-style-image
CSS PROPERTIES
CSS Border
You can use the CSS Border properties to specify the style and color of an element’s
border.
Values
1. border-style
2. border-width
3. border-color
CSS PROPERTIES
CSS Margin
Using CSSMargin properties you can specify the space around elements.
Values:
margin-top:50px;
margin-bottom:30px;
margin-right:25px;
margin-left:10px;
CSS PROPERTIES
THANK
YOU

Contenu connexe

Tendances

1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introduction
apnwebdev
 
Images and Tables in HTML
Images and Tables in HTMLImages and Tables in HTML
Images and Tables in HTML
Aarti P
 

Tendances (20)

Css
CssCss
Css
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introduction
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
Basic-CSS-tutorial
Basic-CSS-tutorialBasic-CSS-tutorial
Basic-CSS-tutorial
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
CSS
CSSCSS
CSS
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
Html images syntax
Html images syntaxHtml images syntax
Html images syntax
 
CSS
CSSCSS
CSS
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
 
Intro Html
Intro HtmlIntro Html
Intro Html
 
Css3
Css3Css3
Css3
 
Event In JavaScript
Event In JavaScriptEvent In JavaScript
Event In JavaScript
 
HTML5 - Insert images and Apply page backgrounds
HTML5 - Insert images and Apply page backgroundsHTML5 - Insert images and Apply page backgrounds
HTML5 - Insert images and Apply page backgrounds
 
Html
HtmlHtml
Html
 
Images and Tables in HTML
Images and Tables in HTMLImages and Tables in HTML
Images and Tables in HTML
 

Similaire à html-css

waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
Ismaciil2
 

Similaire à html-css (20)

waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.pptwaxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
waxaada canshuurahaiyosiyaaddaguudeexamarwaaardaydaDAALBADAN.ppt
 
css1.ppt
css1.pptcss1.ppt
css1.ppt
 
CSS
CSSCSS
CSS
 
Lecture-6.pptx
Lecture-6.pptxLecture-6.pptx
Lecture-6.pptx
 
WT CSS
WT  CSSWT  CSS
WT CSS
 
Cascstylesheets
CascstylesheetsCascstylesheets
Cascstylesheets
 
CSS Presentation Notes.pptx
CSS Presentation Notes.pptxCSS Presentation Notes.pptx
CSS Presentation Notes.pptx
 
Css introduction
Css  introductionCss  introduction
Css introduction
 
CSS tutorial chapter 1
CSS tutorial chapter 1CSS tutorial chapter 1
CSS tutorial chapter 1
 
CSS Basics part One
CSS Basics part OneCSS Basics part One
CSS Basics part One
 
CSS notes
CSS notesCSS notes
CSS notes
 
Unit 3 (it workshop).pptx
Unit 3 (it workshop).pptxUnit 3 (it workshop).pptx
Unit 3 (it workshop).pptx
 
Introduction to css by programmerblog.net
Introduction to css by programmerblog.netIntroduction to css by programmerblog.net
Introduction to css by programmerblog.net
 
Cascading Style Sheet
Cascading Style SheetCascading Style Sheet
Cascading Style Sheet
 
css-ppt.pdf
css-ppt.pdfcss-ppt.pdf
css-ppt.pdf
 
Cordova training - Day 2 Introduction to CSS 3
Cordova training - Day 2 Introduction to CSS 3Cordova training - Day 2 Introduction to CSS 3
Cordova training - Day 2 Introduction to CSS 3
 
Introduction to css & its attributes with syntax
Introduction to css & its attributes with syntaxIntroduction to css & its attributes with syntax
Introduction to css & its attributes with syntax
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
CSS_Day_ONE (W3schools)
CSS_Day_ONE (W3schools)CSS_Day_ONE (W3schools)
CSS_Day_ONE (W3schools)
 
Unit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.pptUnit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.ppt
 

Plus de Dhirendra Chauhan (20)

V35 keys-c
V35  keys-cV35  keys-c
V35 keys-c
 
V34 numeric function-c
V34  numeric function-cV34  numeric function-c
V34 numeric function-c
 
V33 date function-c
V33  date function-cV33  date function-c
V33 date function-c
 
V31 having
V31  havingV31  having
V31 having
 
V30 full join(union intersect etc)
V30  full join(union intersect etc)V30  full join(union intersect etc)
V30 full join(union intersect etc)
 
V29 group by-c
V29  group by-cV29  group by-c
V29 group by-c
 
V28 view
V28  viewV28  view
V28 view
 
V27 constraint
V27 constraintV27 constraint
V27 constraint
 
V26 key
V26 keyV26 key
V26 key
 
V25 sql index
V25 sql indexV25 sql index
V25 sql index
 
V24 cartesion product-c
V24 cartesion product-cV24 cartesion product-c
V24 cartesion product-c
 
V23 function-2
V23 function-2V23 function-2
V23 function-2
 
V22 function-1
V22 function-1V22 function-1
V22 function-1
 
V21 in operator
V21 in operatorV21 in operator
V21 in operator
 
V20 bet ween operator-c
V20 bet ween operator-cV20 bet ween operator-c
V20 bet ween operator-c
 
V19 join method-c
V19 join method-cV19 join method-c
V19 join method-c
 
V18 alias-c
V18 alias-cV18 alias-c
V18 alias-c
 
V17 show command-c
V17 show command-cV17 show command-c
V17 show command-c
 
V16 sql comments-c
V16 sql comments-cV16 sql comments-c
V16 sql comments-c
 
V15 like operator-c
V15 like operator-cV15 like operator-c
V15 like operator-c
 

Dernier

CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
anilsa9823
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
anilsa9823
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Dernier (20)

CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 

html-css

  • 2. WHAT IS CSS? CSS stands for “Cascading Style Sheets” Cascading refers to the procedure that determines which style will apply to a certain section, if you have more than one style rule. Style how you want a certain part of your page to look. You can set things like color, margins, font, etc for things like tables, paragraphs, and headings. Sheets the “sheets” are like templates, or a set of rules, for determining how the webpage will look. CSS is a stylesheet language used to describe the presentation of a document written in HTML or XML.
  • 3. Why Use CSS? • CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes.
  • 4. • A web application will contains hundreds of web pages, which are created using HTML. • Formatting these HTML pages will be a laborious process, as formatting elements need to be applied to each and every page. • CSS saves lots of work as we can change the appearance and layout of all the web pages by editing just one single CSS file. Advantages
  • 6. • A CSS rule-set consists of a selector and a declaration block: • The selector points to the HTML element you want to style. • The declaration block contains one or more declarations separated by semicolons. • Each declaration includes a CSS property name and a value, separated by a colon. • Multiple CSS declarations are separated with semicolons, and declaration blocks are surrounded by curly braces.
  • 7. Example In this example all <p> elements will be center-aligned, with a red text color: p { color : red ; text-align : center; } Example Explained •p is a selector in CSS . •color is a property, and red is the property value •text-align is a property, and center is the property value
  • 9. CSS Syntax Rules Rule have two parts - Selector and declaration. Selector The HTML element you want to add style to. <p> <h1> <table> etc Declaration The statement of style for that element. Made up of property andvalue. Property Declaration V alue Rules Selector Declaration p { font-family : Arial ; }
  • 10. EXAMPLE <html> <head> <style> p {font-family:Arial; color: red; background-color:black;} </style> </head> <body> <p> <b> Welcome to Coder Decoder</b> </p> </body> </html> Welcome to Coder Decoder Selector - I want the text color of my paragraph to be red and the background color to be black.
  • 11. CSS SELECTORS Declaring a CSS Rule for a Elements Attribute It will style all the content of that element which you are selecting. Example The HTML <p> Welcome to the Coder Decoder </p> <p> <b><i> Powered by – Dhirendra Chauhan</i></b> </p> The CSS p {text-align: center; color: blue;}
  • 12. CSS SELECTORS Grouping Selectors You can group all the selectors of same style to minimize the code. The selectors should be separated with comma. Example h2 {text-align: center; color: red; } p {text-align: center; color: red;} Grouped Selectors h2, p { text-align: center; color: red; }
  • 13. INSERTING A STYLESHEET Three different ways 1. External Style Sheet 2. Internal Style Sheet 3. Inline Styles
  • 14. Inline CSS Inline CSS contains the CSS property in the body section attached with element is known as inline CSS. This kind of style is specified within an HTML tag using the style attribute. <html> <head> <title>Inline CSS</title> </head> <body> <p style = "color:#009900; font-size:50px; font-style:italic; text-align:center;"> Coder Decoder </p> </body> </html> Coder Decoder
  • 15. Internal or Embedded CSS An internal stylesheet holds CSS rules for the page in the head section of the HTML file. The rules only apply to that page, but we can configure CSS classes and IDs that can be used to style multiple elements in the page code.
  • 16. <head> <style type =“text / css”> h3 { font-style:bold; font-size:20px; } </style> </head>
  • 17. <html> <head> <title>Internal CSS</title> <style> .main { text-align:center; } .coder { font-style:bold; font-size:20px; } </style> </head> <body> <div class = "main"> <div class ="GFG">Mount Abu</div> <div class =“coder"> A computer science portal for Class X </div> </div> </body> </html>
  • 18. External CSS External CSS contains separate CSS file which contains only style property with the help of tag attributes ( For example class, id, heading, … etc ). An external ( also called linked ) style sheet carries essentially the same information as an internal style sheet in the sense that external style sheet is contained inn its own text file ( having extension .css )
  • 19. <html> <head> <link rel="stylesheet" href="mystyle.css"> </head> <body> <h1>Coder Decoder</h1> <p>This is a my Channel.</p> </body> </html> "mystyle.css" body { background-color: lightblue; } h1 { color: navy; margin-left: 20px; } Example
  • 20. CSS PROPERTIES CSS Background We can use CSS Background properties to define the background effects of an element. The following properties can be used for background effects : a. background-color b. background-image c. background-repeat d. background-position
  • 21. CSS Background Image You can use an image as the background for an element using background- image property. Example:- body{ background-image : url(‘java.png’); } CSS PROPERTIES
  • 22. CSS Background Color The background-color property is used to specify the background color of an element. Example: body { background-color : darkblue; } p { background-color : orange; } CSS PROPERTIES
  • 23. CSS Background Position If the background image disturbs the text, i.e. if the text cannot be read clearly due to the image in the background, we can set the position of the background image. Example: body { background-image :url(“CoderDecoder.jpg"); background-repeat : no-repeat; background-position :right top; } CSS PROPERTIES
  • 24. Text Alignment We can either align the text to the left, right, center or we can make it justified. Example- p { text-align : left;} h1{text-align : center;} Text Color The color property is used to set the color of text. Example- body{ color : blue;} p1 { color : magenta;} CSS PROPERTIES
  • 25. Text Formatting The following properties can be used for formatting text : 1. Text Color 2. Text Alignment 3. Text Decoration 4. Text Transformation 5. Text Indentation CSS PROPERTIES
  • 26. Text Decoration You can use text-decoration property to set or remove decorations from text. Example- p {text-decoration:overline;} p {text-decoration:line-through;} p {text-decoration:underline;} Text Transformation You can use text-transform property to specify uppercase and lowercase letters of any text. Example- h1 {text-transform:uppercase;} h2 {text-transform:lowercase;} p {text-transform:capitalize;} CSS PROPERTIES
  • 27. CSS Font Size You can use the font-size property to set the size of text. The font-size value can be absolute or it can be relative. Example h1 { font-size: 30px; } p { font-size: 14px; } CSS PROPERTIES
  • 28. CSS Links You can use CSSstyles to style any link. Links can be styled in different waysby using any CSSproperty like color, font-family etc. Links can be in one of the following states :  a : link – Unvisited link  a : visited – Alink that the user has visited  a : hover – Alink over which the mouse pointer is moving  a : active – Alink, which has been just clicked CSS PROPERTIES
  • 29. CSS Links a { font-weight: bold; } a : link { color: black; } a : visited { color : gray; } a:hover { text-decoration: none; color: white; background-color: navy; } a : active { color: aqua; background-color : navy; } Styling Links link - before a visit visited - after it has been visited hover - when your mouse is over it but you have not clicked active - you have clicked it and you have not yet seen the new page CSS PROPERTIES
  • 30. CSS List We can use CSSlist properties for  Setting different list item markers for ordered lists  Setting different list item markers for unordered lists  Set an image as the list item marker Values  list-style-type  list-style-image CSS PROPERTIES
  • 31. CSS Border You can use the CSS Border properties to specify the style and color of an element’s border. Values 1. border-style 2. border-width 3. border-color CSS PROPERTIES
  • 32. CSS Margin Using CSSMargin properties you can specify the space around elements. Values: margin-top:50px; margin-bottom:30px; margin-right:25px; margin-left:10px; CSS PROPERTIES