SlideShare a Scribd company logo
CSS for Styling HTML
Contents
CS380
1
Cascading Style Sheets (CSS)
 CSS use to describes the appearance, layout,
and presentation of information on a web page
 CSS Advantages:
2
•Separates structure from presentation
•Provides advanced control of presentation
•Easy maintenance of multiple pages
•Faster page loading
•Better accessibility for disabled users
•Easy to learn
Basic CSS rule syntax
 A CSS file consists of one or more rules
 Each rule starts with a selector
 A selector specifies an HTML element(s) and then
applies style properties to them
3
SYNTAX to Write CSS=
selector {
property: value;
...
property: value;
} CSS
Example===
p {
font-family: sans-serif;
color: red;
}
Types of CSS or
Attaching a Style Sheet
Attach a style sheet to a page by adding the code to the
<head> section of the HTML page. There are 3 ways to attach
CSS to a page:
1. External Style Sheet: Best used to control styling on multiple
pages.
<link rel="stylesheet" type="text/css"
media="all" href="css/styles.css" />
2. Internal Style Sheet: Best used to control styling on one page.
<style type=“text/css”>
h1 {color: red)
</style>
3. Inline Style Sheet*: CSS is not attached in the <header> but is
used directly within HTML tags.
<p style=“color: red”>Some Text</p>
Types of CSS- External CSS
 A page can link to multiple style sheet file.
 It uses Two fils-1 .CSS and 2. .HTML
5
P{color:red;} style.CSS
<head>
<link href="style.css" rel="stylesheet" /></head>
<body><p>This is External CSS</p>
.HTML
CS380
Internal CSS:
 It apply on Single Page.
 It uses <style> Tag in <head> and </head>.
6
<head>
<style>
p { font-family: arial;
color: red; }
h2 { background-color: yellow; }
</style>
</head> <body><h1>Internal CSS</h1>
<p>This is Internal CSS</p></body>
HTML
CS380
Inline styles: the style attribute
 It apply on single line of HTML code.
 It uses style as attribute.
 Higher precedence than internal or external CSS styles
7
<p style="font-family: chiller; color: red;">
This is a paragraph</p>
HTML
CS380
CSS properties for colors
8
p {
color: red;
background-color: yellow;
}
CSS
CS380
This paragraph uses the style above output
property description
color color of the element's text
background-color
color that will appear behind the
element
CSS comments /*…*/
9
/* This is a comment.
It can span many lines in the CSS file. */
p {
color: red; background-color: aqua;
} CSS
 CSS (like HTML) is usually not commented as rigorously
as programming languages such as Java
 The // single-line comment style is NOT supported in
CSS
 The <!-- ... --> HTML comment style is also NOT
supported in CSS
CS380
CSS properties for fonts
property description
font-family which font will be used
font-size how large the letters will be drawn
font-style used to enable/disable italic style
font-weight used to enable/disable bold style
CS380
10
<html>
<head><style>
p {
font-family :chiller;
font-size :20px;
font-style :italic;
font-weight :bold
} </style></head><body>
<p> This text formatted with font properties</p></body></html
Example:
CSS properties for text
property description
text-align alignment of text within its element
text-decoration decorations such as underlining
line-height,
word-spacing,
letter-spacing
gaps between the various portions
of the text
text-indent
indents the first letter of each
paragraph
CS380
11
Example
CS380
12
<html>
<head><style>
p {
line-height:12px;
Text-align: center;
Text-decoration:Overline;
Text-transform: uppercase;
word-spacing:20px;
letter-spacing:30px;
} </style></head><body>
<p> This text formatted with text properties</p></body></html
Example:
CSS properties for backgrounds
property description
background-color color to fill background
background-image image to place in background
background-position
placement of bg image within
element
background-repeat
whether/how bg image should be
repeated
CS380
13
Example:
CS380
14
<html>
<head><style>
body{
background-color:red;
Background-image:url(image1.jpg);
background-position:right;
Background-repeat:no-repeat;
Background-size: 200px 300px;
} </style></head><body>
<p> This page formatted with background
properties</p></body></html
CSS Box Model Properties:
CS380
15
property description
height To Change height of Section.
width To Change width of Section.
margin
Use to define margin space along
with four side
Padding
Use to define space along with
four side between border and
content.
Border
Use to define border around
content
Example:
CS380
16
<html>
<head><style>
div{
Hight:300px;
Width:300px;
Border: solid 20px red;
Margin-left:50px;
Padding:30px; //apply to for side
} </style></head><body>
<div>
<p> This section formatted with box model
properties</p></div></body></html
Ad

More Related Content

What's hot (20)

CSS (Cascading Style Sheet)
CSS (Cascading Style Sheet)CSS (Cascading Style Sheet)
CSS (Cascading Style Sheet)
Harshit Srivastava
 
Cascading style sheets (CSS)
Cascading style sheets (CSS)Cascading style sheets (CSS)
Cascading style sheets (CSS)
Harshita Yadav
 
Introduction to css
Introduction to cssIntroduction to css
Introduction to css
eShikshak
 
Css
CssCss
Css
shanmuga rajan
 
Introduction to css
Introduction to cssIntroduction to css
Introduction to css
Evolution Network
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
Salman Memon
 
Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) help
casestudyhelp
 
Cascading style sheet (css)]
Cascading style sheet (css)]Cascading style sheet (css)]
Cascading style sheet (css)]
9574395990
 
Week 12 CSS - Review from last week
Week 12 CSS - Review from last weekWeek 12 CSS - Review from last week
Week 12 CSS - Review from last week
Katherine McCurdy-Lapierre, R.G.D.
 
Introducing Cascading Style Sheets
Introducing Cascading Style SheetsIntroducing Cascading Style Sheets
Introducing Cascading Style Sheets
St. Petersburg College
 
CSS
CSS CSS
CSS
Sunil OS
 
HTML CSS Basics
HTML CSS BasicsHTML CSS Basics
HTML CSS Basics
Mai Moustafa
 
Css
CssCss
Css
mohamed ashraf
 
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
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Amit Tyagi
 
Css introduction
Css   introductionCss   introduction
Css introduction
AbhishekMondal42
 
CSS
CSSCSS
CSS
seedinteractive
 
CSS Basics (Cascading Style Sheet)
CSS Basics (Cascading Style Sheet)CSS Basics (Cascading Style Sheet)
CSS Basics (Cascading Style Sheet)
Ajay Khatri
 
Beginners css tutorial for web designers
Beginners css tutorial for web designersBeginners css tutorial for web designers
Beginners css tutorial for web designers
Singsys Pte Ltd
 
Introduction to web design discussing which languages is used for website des...
Introduction to web design discussing which languages is used for website des...Introduction to web design discussing which languages is used for website des...
Introduction to web design discussing which languages is used for website des...
Aditya Dwivedi
 
Cascading style sheets (CSS)
Cascading style sheets (CSS)Cascading style sheets (CSS)
Cascading style sheets (CSS)
Harshita Yadav
 
Introduction to css
Introduction to cssIntroduction to css
Introduction to css
eShikshak
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
Salman Memon
 
Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) help
casestudyhelp
 
Cascading style sheet (css)]
Cascading style sheet (css)]Cascading style sheet (css)]
Cascading style sheet (css)]
9574395990
 
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
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Amit Tyagi
 
CSS Basics (Cascading Style Sheet)
CSS Basics (Cascading Style Sheet)CSS Basics (Cascading Style Sheet)
CSS Basics (Cascading Style Sheet)
Ajay Khatri
 
Beginners css tutorial for web designers
Beginners css tutorial for web designersBeginners css tutorial for web designers
Beginners css tutorial for web designers
Singsys Pte Ltd
 
Introduction to web design discussing which languages is used for website des...
Introduction to web design discussing which languages is used for website des...Introduction to web design discussing which languages is used for website des...
Introduction to web design discussing which languages is used for website des...
Aditya Dwivedi
 

Similar to Css basic (20)

Html Styles-CSS
Html Styles-CSSHtml Styles-CSS
Html Styles-CSS
ispkosova
 
diffrent style sheets like cascading style sheets.pptx
diffrent style sheets like cascading style sheets.pptxdiffrent style sheets like cascading style sheets.pptx
diffrent style sheets like cascading style sheets.pptx
ssuser46d915
 
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.pptDW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
MaryRoseEyao
 
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.pptDW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
YazanMohamed1
 
DW_lesson2.ppt
DW_lesson2.pptDW_lesson2.ppt
DW_lesson2.ppt
JohnpaulStem11
 
DW_lesson2.ppt
DW_lesson2.pptDW_lesson2.ppt
DW_lesson2.ppt
PramenathA
 
DW_lesson2.ppt
DW_lesson2.pptDW_lesson2.ppt
DW_lesson2.ppt
UsamaShakeel22
 
DW_lesson2.ppt
DW_lesson2.pptDW_lesson2.ppt
DW_lesson2.ppt
ssuser666f98
 
DW_lesson2.ppt
DW_lesson2.pptDW_lesson2.ppt
DW_lesson2.ppt
JohnSon872476
 
CSS Cascading Style Sheet Introduction slides
CSS Cascading Style Sheet Introduction slidesCSS Cascading Style Sheet Introduction slides
CSS Cascading Style Sheet Introduction slides
Aasma13
 
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
 
Lecture-6.pptx
Lecture-6.pptxLecture-6.pptx
Lecture-6.pptx
vishal choudhary
 
Css
CssCss
Css
NIRMAL FELIX
 
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
Tesfaye Yenealem
 
Introduction to basics of css, overview, syntax and so on
Introduction to basics of css, overview, syntax and so onIntroduction to basics of css, overview, syntax and so on
Introduction to basics of css, overview, syntax and so on
mictnawaraj
 
Css
CssCss
Css
actacademy
 
Css
CssCss
Css
actacademy
 
Unit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.pptUnit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.ppt
TusharTikia
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Ameer Khan
 
Introduction to CSS in HTML.ppt
Introduction to CSS in HTML.pptIntroduction to CSS in HTML.ppt
Introduction to CSS in HTML.ppt
parveen837153
 
Html Styles-CSS
Html Styles-CSSHtml Styles-CSS
Html Styles-CSS
ispkosova
 
diffrent style sheets like cascading style sheets.pptx
diffrent style sheets like cascading style sheets.pptxdiffrent style sheets like cascading style sheets.pptx
diffrent style sheets like cascading style sheets.pptx
ssuser46d915
 
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.pptDW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
MaryRoseEyao
 
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.pptDW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
YazanMohamed1
 
DW_lesson2.ppt
DW_lesson2.pptDW_lesson2.ppt
DW_lesson2.ppt
PramenathA
 
CSS Cascading Style Sheet Introduction slides
CSS Cascading Style Sheet Introduction slidesCSS Cascading Style Sheet Introduction slides
CSS Cascading Style Sheet Introduction slides
Aasma13
 
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
 
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
Tesfaye Yenealem
 
Introduction to basics of css, overview, syntax and so on
Introduction to basics of css, overview, syntax and so onIntroduction to basics of css, overview, syntax and so on
Introduction to basics of css, overview, syntax and so on
mictnawaraj
 
Unit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.pptUnit 2-CSS & Bootstrap.ppt
Unit 2-CSS & Bootstrap.ppt
TusharTikia
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Ameer Khan
 
Introduction to CSS in HTML.ppt
Introduction to CSS in HTML.pptIntroduction to CSS in HTML.ppt
Introduction to CSS in HTML.ppt
parveen837153
 
Ad

Recently uploaded (20)

KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
INKPPT
 
DU Meter Crack Latest Version Free Download
DU Meter Crack Latest Version Free DownloadDU Meter Crack Latest Version Free Download
DU Meter Crack Latest Version Free Download
Designer
 
Accenture Life Trends 2023 – How Brands & Humans Are Evolving Together
Accenture Life Trends 2023 – How Brands & Humans Are Evolving TogetherAccenture Life Trends 2023 – How Brands & Humans Are Evolving Together
Accenture Life Trends 2023 – How Brands & Humans Are Evolving Together
INKPPT
 
KPMG – ESG Predictions 2030 | Future Trends in Sustainability & Governance
KPMG – ESG Predictions 2030 | Future Trends in Sustainability & GovernanceKPMG – ESG Predictions 2030 | Future Trends in Sustainability & Governance
KPMG – ESG Predictions 2030 | Future Trends in Sustainability & Governance
INKPPT
 
Morgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdfMorgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdf
1508 A/S
 
Adobe Express Crack For Pc [Fully Unlocked] Download
Adobe Express Crack For Pc [Fully Unlocked] DownloadAdobe Express Crack For Pc [Fully Unlocked] Download
Adobe Express Crack For Pc [Fully Unlocked] Download
Sorry Iam Engaged
 
uTorrent Pro Crack Download for PC [Latest] 2025 Version
uTorrent Pro Crack Download for PC [Latest] 2025 VersionuTorrent Pro Crack Download for PC [Latest] 2025 Version
uTorrent Pro Crack Download for PC [Latest] 2025 Version
Web Designer
 
Renee iPhone Recovery Crack 2025 [Latest]
Renee iPhone Recovery Crack 2025 [Latest]Renee iPhone Recovery Crack 2025 [Latest]
Renee iPhone Recovery Crack 2025 [Latest]
Telecom / Mobile
 
EY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the AuditEY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the Audit
INKPPT
 
hemtfhusdfjifddsklmfhnfdsjflsafjfnhsd.pptx
hemtfhusdfjifddsklmfhnfdsjflsafjfnhsd.pptxhemtfhusdfjifddsklmfhnfdsjflsafjfnhsd.pptx
hemtfhusdfjifddsklmfhnfdsjflsafjfnhsd.pptx
chandangangola77
 
BCG’s Evolution of Travel: Rethinking Business Travel in a Post-Pandemic World
BCG’s Evolution of Travel: Rethinking Business Travel in a Post-Pandemic WorldBCG’s Evolution of Travel: Rethinking Business Travel in a Post-Pandemic World
BCG’s Evolution of Travel: Rethinking Business Travel in a Post-Pandemic World
INKPPT
 
COLOR THEROY IN GRAPHIC DESIGN HANDBOOK FOR BEGINNERS
COLOR THEROY IN GRAPHIC DESIGN HANDBOOK FOR BEGINNERSCOLOR THEROY IN GRAPHIC DESIGN HANDBOOK FOR BEGINNERS
COLOR THEROY IN GRAPHIC DESIGN HANDBOOK FOR BEGINNERS
alainyanda99
 
Chimera Tool Latest Version 2025 Free Download
Chimera Tool Latest Version 2025 Free DownloadChimera Tool Latest Version 2025 Free Download
Chimera Tool Latest Version 2025 Free Download
Sorry Iam Engaged
 
Microsoft Office 365 Crack Free Download 2025
Microsoft Office 365 Crack Free Download 2025Microsoft Office 365 Crack Free Download 2025
Microsoft Office 365 Crack Free Download 2025
Sorry Iam Engaged
 
Using AI to streamline personas and journey map creation by Kyle Soucy
Using AI to streamline personas and journey map creation by Kyle SoucyUsing AI to streamline personas and journey map creation by Kyle Soucy
Using AI to streamline personas and journey map creation by Kyle Soucy
UXPA Boston
 
Flying Airplane Theme Infographics by Slidesgo (1).pptx
Flying Airplane Theme Infographics by Slidesgo (1).pptxFlying Airplane Theme Infographics by Slidesgo (1).pptx
Flying Airplane Theme Infographics by Slidesgo (1).pptx
sapohaf902
 
SEERAT PPT[1][1].pptx project in sant ba
SEERAT PPT[1][1].pptx project in sant baSEERAT PPT[1][1].pptx project in sant ba
SEERAT PPT[1][1].pptx project in sant ba
RanvirSingh151
 
Avast Premium Security Crack + License Key Till v2050
Avast Premium Security Crack + License Key Till v2050Avast Premium Security Crack + License Key Till v2050
Avast Premium Security Crack + License Key Till v2050
Mudasir
 
Outcome over Output: How UXers can leverage an Outcome-based mindset
Outcome over Output: How UXers can leverage an Outcome-based mindsetOutcome over Output: How UXers can leverage an Outcome-based mindset
Outcome over Output: How UXers can leverage an Outcome-based mindset
Malini Rao
 
Avast Premium Security 25.4.10068 + License Key Till 2050
Avast Premium Security 25.4.10068 + License Key Till 2050Avast Premium Security 25.4.10068 + License Key Till 2050
Avast Premium Security 25.4.10068 + License Key Till 2050
Telecom / Mobile
 
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
INKPPT
 
DU Meter Crack Latest Version Free Download
DU Meter Crack Latest Version Free DownloadDU Meter Crack Latest Version Free Download
DU Meter Crack Latest Version Free Download
Designer
 
Accenture Life Trends 2023 – How Brands & Humans Are Evolving Together
Accenture Life Trends 2023 – How Brands & Humans Are Evolving TogetherAccenture Life Trends 2023 – How Brands & Humans Are Evolving Together
Accenture Life Trends 2023 – How Brands & Humans Are Evolving Together
INKPPT
 
KPMG – ESG Predictions 2030 | Future Trends in Sustainability & Governance
KPMG – ESG Predictions 2030 | Future Trends in Sustainability & GovernanceKPMG – ESG Predictions 2030 | Future Trends in Sustainability & Governance
KPMG – ESG Predictions 2030 | Future Trends in Sustainability & Governance
INKPPT
 
Morgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdfMorgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdf
1508 A/S
 
Adobe Express Crack For Pc [Fully Unlocked] Download
Adobe Express Crack For Pc [Fully Unlocked] DownloadAdobe Express Crack For Pc [Fully Unlocked] Download
Adobe Express Crack For Pc [Fully Unlocked] Download
Sorry Iam Engaged
 
uTorrent Pro Crack Download for PC [Latest] 2025 Version
uTorrent Pro Crack Download for PC [Latest] 2025 VersionuTorrent Pro Crack Download for PC [Latest] 2025 Version
uTorrent Pro Crack Download for PC [Latest] 2025 Version
Web Designer
 
Renee iPhone Recovery Crack 2025 [Latest]
Renee iPhone Recovery Crack 2025 [Latest]Renee iPhone Recovery Crack 2025 [Latest]
Renee iPhone Recovery Crack 2025 [Latest]
Telecom / Mobile
 
EY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the AuditEY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the Audit
INKPPT
 
hemtfhusdfjifddsklmfhnfdsjflsafjfnhsd.pptx
hemtfhusdfjifddsklmfhnfdsjflsafjfnhsd.pptxhemtfhusdfjifddsklmfhnfdsjflsafjfnhsd.pptx
hemtfhusdfjifddsklmfhnfdsjflsafjfnhsd.pptx
chandangangola77
 
BCG’s Evolution of Travel: Rethinking Business Travel in a Post-Pandemic World
BCG’s Evolution of Travel: Rethinking Business Travel in a Post-Pandemic WorldBCG’s Evolution of Travel: Rethinking Business Travel in a Post-Pandemic World
BCG’s Evolution of Travel: Rethinking Business Travel in a Post-Pandemic World
INKPPT
 
COLOR THEROY IN GRAPHIC DESIGN HANDBOOK FOR BEGINNERS
COLOR THEROY IN GRAPHIC DESIGN HANDBOOK FOR BEGINNERSCOLOR THEROY IN GRAPHIC DESIGN HANDBOOK FOR BEGINNERS
COLOR THEROY IN GRAPHIC DESIGN HANDBOOK FOR BEGINNERS
alainyanda99
 
Chimera Tool Latest Version 2025 Free Download
Chimera Tool Latest Version 2025 Free DownloadChimera Tool Latest Version 2025 Free Download
Chimera Tool Latest Version 2025 Free Download
Sorry Iam Engaged
 
Microsoft Office 365 Crack Free Download 2025
Microsoft Office 365 Crack Free Download 2025Microsoft Office 365 Crack Free Download 2025
Microsoft Office 365 Crack Free Download 2025
Sorry Iam Engaged
 
Using AI to streamline personas and journey map creation by Kyle Soucy
Using AI to streamline personas and journey map creation by Kyle SoucyUsing AI to streamline personas and journey map creation by Kyle Soucy
Using AI to streamline personas and journey map creation by Kyle Soucy
UXPA Boston
 
Flying Airplane Theme Infographics by Slidesgo (1).pptx
Flying Airplane Theme Infographics by Slidesgo (1).pptxFlying Airplane Theme Infographics by Slidesgo (1).pptx
Flying Airplane Theme Infographics by Slidesgo (1).pptx
sapohaf902
 
SEERAT PPT[1][1].pptx project in sant ba
SEERAT PPT[1][1].pptx project in sant baSEERAT PPT[1][1].pptx project in sant ba
SEERAT PPT[1][1].pptx project in sant ba
RanvirSingh151
 
Avast Premium Security Crack + License Key Till v2050
Avast Premium Security Crack + License Key Till v2050Avast Premium Security Crack + License Key Till v2050
Avast Premium Security Crack + License Key Till v2050
Mudasir
 
Outcome over Output: How UXers can leverage an Outcome-based mindset
Outcome over Output: How UXers can leverage an Outcome-based mindsetOutcome over Output: How UXers can leverage an Outcome-based mindset
Outcome over Output: How UXers can leverage an Outcome-based mindset
Malini Rao
 
Avast Premium Security 25.4.10068 + License Key Till 2050
Avast Premium Security 25.4.10068 + License Key Till 2050Avast Premium Security 25.4.10068 + License Key Till 2050
Avast Premium Security 25.4.10068 + License Key Till 2050
Telecom / Mobile
 
Ad

Css basic

  • 1. CSS for Styling HTML Contents CS380 1
  • 2. Cascading Style Sheets (CSS)  CSS use to describes the appearance, layout, and presentation of information on a web page  CSS Advantages: 2 •Separates structure from presentation •Provides advanced control of presentation •Easy maintenance of multiple pages •Faster page loading •Better accessibility for disabled users •Easy to learn
  • 3. Basic CSS rule syntax  A CSS file consists of one or more rules  Each rule starts with a selector  A selector specifies an HTML element(s) and then applies style properties to them 3 SYNTAX to Write CSS= selector { property: value; ... property: value; } CSS Example=== p { font-family: sans-serif; color: red; }
  • 4. Types of CSS or Attaching a Style Sheet Attach a style sheet to a page by adding the code to the <head> section of the HTML page. There are 3 ways to attach CSS to a page: 1. External Style Sheet: Best used to control styling on multiple pages. <link rel="stylesheet" type="text/css" media="all" href="css/styles.css" /> 2. Internal Style Sheet: Best used to control styling on one page. <style type=“text/css”> h1 {color: red) </style> 3. Inline Style Sheet*: CSS is not attached in the <header> but is used directly within HTML tags. <p style=“color: red”>Some Text</p>
  • 5. Types of CSS- External CSS  A page can link to multiple style sheet file.  It uses Two fils-1 .CSS and 2. .HTML 5 P{color:red;} style.CSS <head> <link href="style.css" rel="stylesheet" /></head> <body><p>This is External CSS</p> .HTML CS380
  • 6. Internal CSS:  It apply on Single Page.  It uses <style> Tag in <head> and </head>. 6 <head> <style> p { font-family: arial; color: red; } h2 { background-color: yellow; } </style> </head> <body><h1>Internal CSS</h1> <p>This is Internal CSS</p></body> HTML CS380
  • 7. Inline styles: the style attribute  It apply on single line of HTML code.  It uses style as attribute.  Higher precedence than internal or external CSS styles 7 <p style="font-family: chiller; color: red;"> This is a paragraph</p> HTML CS380
  • 8. CSS properties for colors 8 p { color: red; background-color: yellow; } CSS CS380 This paragraph uses the style above output property description color color of the element's text background-color color that will appear behind the element
  • 9. CSS comments /*…*/ 9 /* This is a comment. It can span many lines in the CSS file. */ p { color: red; background-color: aqua; } CSS  CSS (like HTML) is usually not commented as rigorously as programming languages such as Java  The // single-line comment style is NOT supported in CSS  The <!-- ... --> HTML comment style is also NOT supported in CSS CS380
  • 10. CSS properties for fonts property description font-family which font will be used font-size how large the letters will be drawn font-style used to enable/disable italic style font-weight used to enable/disable bold style CS380 10 <html> <head><style> p { font-family :chiller; font-size :20px; font-style :italic; font-weight :bold } </style></head><body> <p> This text formatted with font properties</p></body></html Example:
  • 11. CSS properties for text property description text-align alignment of text within its element text-decoration decorations such as underlining line-height, word-spacing, letter-spacing gaps between the various portions of the text text-indent indents the first letter of each paragraph CS380 11
  • 12. Example CS380 12 <html> <head><style> p { line-height:12px; Text-align: center; Text-decoration:Overline; Text-transform: uppercase; word-spacing:20px; letter-spacing:30px; } </style></head><body> <p> This text formatted with text properties</p></body></html Example:
  • 13. CSS properties for backgrounds property description background-color color to fill background background-image image to place in background background-position placement of bg image within element background-repeat whether/how bg image should be repeated CS380 13
  • 15. CSS Box Model Properties: CS380 15 property description height To Change height of Section. width To Change width of Section. margin Use to define margin space along with four side Padding Use to define space along with four side between border and content. Border Use to define border around content
  • 16. Example: CS380 16 <html> <head><style> div{ Hight:300px; Width:300px; Border: solid 20px red; Margin-left:50px; Padding:30px; //apply to for side } </style></head><body> <div> <p> This section formatted with box model properties</p></div></body></html

Editor's Notes

  • #5: 4
  • #6: a conflict (two sheets define a style for the same HTML element
  翻译: