尊敬的 微信汇率:1円 ≈ 0.046166 元 支付宝汇率:1円 ≈ 0.046257元 [退出登录]
SlideShare a Scribd company logo
How CSS works
Cascading Style Sheets
(Session 8)
What is CSS
• Cascading Style Sheets
• Contains the rules for the presentation of
HTML.
+ =
HTML CSS Web Page
• CSS was introduced to keep the
presentation information separate from
HTML markup (content).
Before CSS
• Initially Designers used presentation tags like (FONT, B, BR, TABLE
etc.) and spacers GIFs to control the design of web pages.
• Any modification in the design of websites
was a very difficult and boring task , as it
evolves manually editing every HTML
page.
Providing support for multiple browsers was a
difficult task.
CSS – brief history
• Style sheets have existed in one form or
another since the beginnings of SGML in
the 1970s.
• In 1996, CSS level 1 Recommendation
was published in December.
• CSS level2 was published as a W3C
Recommendation on May 12, 1998
• CSS level3 is still under development.
Sources of Styles
Author (developer) Styles
• Inline Styles - As inline attribute “style” inside HTML tags
<div style=“font-weight: bold;”>I am bold</div>
• Embedded Styles - As embedded style tag with in HTML
document.
<html>
<head>
<title>Welcome to Vendio!</title>
<style>
.footer {
width:90%;
}
</style>
</html>
• Linked Styles - Inside separate files with .css extension
<link rel="stylesheet" href=“external.css" type="text/css" />
Sources of Styles(contd.)
• User Style sheets
This file contains the user created styles .
[firefox profile folder]/
chrome/userContent-example.css is the
current user’s style sheet file for the
firefox.
• Browser default style sheet
This file contains default styles for all users of a
browser
[firefox folder]/res/html.css is the
default style sheet file for the firefox.
Cascade
The CSS cascade assigns a weight
to each style rule. When several
rules apply, the one with the
greatest weight takes precedence.
Order of preference for various
styles:
– Default browser style sheet
(weakest)
– User style sheet
– Author style sheet
– Author embedded styles
– Author inline styles (strongest)
CSS Selectors
• ID based ( #)
HTML
<div id=“content”>
Text
</div>
CSS
#content {
width: 200px;
}
ID selectors should be used with single elements.
Class based selector
• Class (.)
HTML
<div class=“big”>
Text
</div>
<div>
CSS
.content {
width: 200px;
}
<span class=“big”>some text </span>
</div>
Class based styles can be used by multiple HTML elements.
Tag based selectors
• Tag (Tag name)
HTML CSS
<div> DIV {
Text width: 200px;
</div> }
<div> SPAN {
<span>some text </span> font-size:130%;
</div> }
<span>some other text </span>
Grouping
• Multiple selectors can be grouped in a
single style declaration by using , .
H1, P , .main {
font-weight:bold;
}
Descendant selectors
Descendant selectors are used to select elements that
are descendants (not necessarily children) of another
element in the document tree.
CSS
DIV.abc P {
font-weight:bold;
}
HTML
<div class=“abc”>
<div>
<P>
Hello there!
</p>
</div>
</div>
Child selectors
A child selector is used to select an element that is a
direct child of another element (parent). Child selectors
will not select all descendants, only direct children.
CSS
DIV.abc > P {
font-weight:bold;
}
HTML
<div >
<div class=“abc”>
<P>
Hello there!
</p>
</div>
</div>
Universal selectors
Universal selectors are used to select any
element.
* {
color: blue;
}
Adjacent sibling selectors
Adjacent sibling selectors will select the
sibling immediately following an element.
DIV.abc + P {
font-weight: bold;
}
will work for
<div>
<div class=“abc”>Message</div>
<P>Hello there!</p>
</div>
Attribute selectors
Attribute selectors selects elements based
upon the attributes present in the HTML
Tags and their value.
IMG[src="small.gif"] {
border: 1px solid #000;
}
will work for
<img src=“small.gif” />

More Related Content

Similar to howcssworks-100207024009-phpapp01.pptx

Web Development - Lecture 5
Web Development - Lecture 5Web Development - Lecture 5
Web Development - Lecture 5
Syed Shahzaib Sohail
 
Css
CssCss
Css week10 2019 2020 for g10 by eng.osama ghandour
Css week10 2019 2020 for g10 by eng.osama ghandourCss week10 2019 2020 for g10 by eng.osama ghandour
Css week10 2019 2020 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
DHTML
DHTMLDHTML
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
Salman Memon
 
Web design-workflow
Web design-workflowWeb design-workflow
Web design-workflow
Peter Kaizer
 
Cashcading stylesheets
Cashcading stylesheetsCashcading stylesheets
Cashcading stylesheets
reddivarihareesh
 
Cascading Style Sheets for web browser.pptx
Cascading Style Sheets for web browser.pptxCascading Style Sheets for web browser.pptx
Cascading Style Sheets for web browser.pptx
alvindalejoyosa1
 
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
 
Vskills certified css designer Notes
Vskills certified css designer NotesVskills certified css designer Notes
Vskills certified css designer Notes
Vskills
 
basic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdfbasic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdf
elayelily
 
Css
CssCss
4. Web Technology CSS Basics-1
4. Web Technology CSS Basics-14. Web Technology CSS Basics-1
4. Web Technology CSS Basics-1
Jyoti Yadav
 
Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3
DanWooster1
 
uptu web technology unit 2 Css
uptu web technology unit 2 Cssuptu web technology unit 2 Css
uptu web technology unit 2 Css
Abhishek Kesharwani
 
Internet tech &amp; web prog. p4,5
Internet tech &amp; web prog.  p4,5Internet tech &amp; web prog.  p4,5
Internet tech &amp; web prog. p4,5
Taymoor Nazmy
 
Cascading style sheet an introduction
Cascading style sheet   an introductionCascading style sheet   an introduction
Cascading style sheet an introduction
Himanshu Pathak
 
Intro to css
Intro to cssIntro to css
Intro to css
Rajashekarkorva
 
Unit 2 WT-CSS.pptx web technology project
Unit 2 WT-CSS.pptx web technology projectUnit 2 WT-CSS.pptx web technology project
Unit 2 WT-CSS.pptx web technology project
abhiramhatwar
 
Web programming css
Web programming cssWeb programming css
Web programming css
Uma mohan
 

Similar to howcssworks-100207024009-phpapp01.pptx (20)

Web Development - Lecture 5
Web Development - Lecture 5Web Development - Lecture 5
Web Development - Lecture 5
 
Css
CssCss
Css
 
Css week10 2019 2020 for g10 by eng.osama ghandour
Css week10 2019 2020 for g10 by eng.osama ghandourCss week10 2019 2020 for g10 by eng.osama ghandour
Css week10 2019 2020 for g10 by eng.osama ghandour
 
DHTML
DHTMLDHTML
DHTML
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
Web design-workflow
Web design-workflowWeb design-workflow
Web design-workflow
 
Cashcading stylesheets
Cashcading stylesheetsCashcading stylesheets
Cashcading stylesheets
 
Cascading Style Sheets for web browser.pptx
Cascading Style Sheets for web browser.pptxCascading Style Sheets for web browser.pptx
Cascading Style Sheets for web browser.pptx
 
Beginners css tutorial for web designers
Beginners css tutorial for web designersBeginners css tutorial for web designers
Beginners css tutorial for web designers
 
Vskills certified css designer Notes
Vskills certified css designer NotesVskills certified css designer Notes
Vskills certified css designer Notes
 
basic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdfbasic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdf
 
Css
CssCss
Css
 
4. Web Technology CSS Basics-1
4. Web Technology CSS Basics-14. Web Technology CSS Basics-1
4. Web Technology CSS Basics-1
 
Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3
 
uptu web technology unit 2 Css
uptu web technology unit 2 Cssuptu web technology unit 2 Css
uptu web technology unit 2 Css
 
Internet tech &amp; web prog. p4,5
Internet tech &amp; web prog.  p4,5Internet tech &amp; web prog.  p4,5
Internet tech &amp; web prog. p4,5
 
Cascading style sheet an introduction
Cascading style sheet   an introductionCascading style sheet   an introduction
Cascading style sheet an introduction
 
Intro to css
Intro to cssIntro to css
Intro to css
 
Unit 2 WT-CSS.pptx web technology project
Unit 2 WT-CSS.pptx web technology projectUnit 2 WT-CSS.pptx web technology project
Unit 2 WT-CSS.pptx web technology project
 
Web programming css
Web programming cssWeb programming css
Web programming css
 

More from RavneetSingh343801

csc ppt 15.pptx
csc ppt 15.pptxcsc ppt 15.pptx
csc ppt 15.pptx
RavneetSingh343801
 
123.pptx
123.pptx123.pptx
DM_Draft1.pptx
DM_Draft1.pptxDM_Draft1.pptx
DM_Draft1.pptx
RavneetSingh343801
 
MC PPT.pptx
MC PPT.pptxMC PPT.pptx
MC PPT.pptx
RavneetSingh343801
 
Management Games_Final_IP 2022.pptx
Management Games_Final_IP 2022.pptxManagement Games_Final_IP 2022.pptx
Management Games_Final_IP 2022.pptx
RavneetSingh343801
 
chap3.ppt
chap3.pptchap3.ppt
Lecture 1_Unit 2.pptx
Lecture 1_Unit 2.pptxLecture 1_Unit 2.pptx
Lecture 1_Unit 2.pptx
RavneetSingh343801
 
webdesign.ppt
webdesign.pptwebdesign.ppt
webdesign.ppt
RavneetSingh343801
 
5 (2).pdf
5 (2).pdf5 (2).pdf
web1-intro-160116141157.pptx
web1-intro-160116141157.pptxweb1-intro-160116141157.pptx
web1-intro-160116141157.pptx
RavneetSingh343801
 
Global entrepreneurship.pptx
Global entrepreneurship.pptxGlobal entrepreneurship.pptx
Global entrepreneurship.pptx
RavneetSingh343801
 

More from RavneetSingh343801 (11)

csc ppt 15.pptx
csc ppt 15.pptxcsc ppt 15.pptx
csc ppt 15.pptx
 
123.pptx
123.pptx123.pptx
123.pptx
 
DM_Draft1.pptx
DM_Draft1.pptxDM_Draft1.pptx
DM_Draft1.pptx
 
MC PPT.pptx
MC PPT.pptxMC PPT.pptx
MC PPT.pptx
 
Management Games_Final_IP 2022.pptx
Management Games_Final_IP 2022.pptxManagement Games_Final_IP 2022.pptx
Management Games_Final_IP 2022.pptx
 
chap3.ppt
chap3.pptchap3.ppt
chap3.ppt
 
Lecture 1_Unit 2.pptx
Lecture 1_Unit 2.pptxLecture 1_Unit 2.pptx
Lecture 1_Unit 2.pptx
 
webdesign.ppt
webdesign.pptwebdesign.ppt
webdesign.ppt
 
5 (2).pdf
5 (2).pdf5 (2).pdf
5 (2).pdf
 
web1-intro-160116141157.pptx
web1-intro-160116141157.pptxweb1-intro-160116141157.pptx
web1-intro-160116141157.pptx
 
Global entrepreneurship.pptx
Global entrepreneurship.pptxGlobal entrepreneurship.pptx
Global entrepreneurship.pptx
 

Recently uploaded

一比一原版迪肯大学毕业证(DU毕业证书)学历如何办理
一比一原版迪肯大学毕业证(DU毕业证书)学历如何办理一比一原版迪肯大学毕业证(DU毕业证书)学历如何办理
一比一原版迪肯大学毕业证(DU毕业证书)学历如何办理
mamekyn
 
一比一原版美国俄克拉荷马大学毕业证(ou学位证)如何办理
一比一原版美国俄克拉荷马大学毕业证(ou学位证)如何办理一比一原版美国俄克拉荷马大学毕业证(ou学位证)如何办理
一比一原版美国俄克拉荷马大学毕业证(ou学位证)如何办理
p74xokfq
 
Noida Foods in Noida Sector 18,Delhi - Order Food Online
Noida Foods in Noida Sector 18,Delhi - Order Food OnlineNoida Foods in Noida Sector 18,Delhi - Order Food Online
Noida Foods in Noida Sector 18,Delhi - Order Food Online
rehmti665
 
一比一原版(trent学位证书)加拿大特伦特大学毕业证如何办理
一比一原版(trent学位证书)加拿大特伦特大学毕业证如何办理一比一原版(trent学位证书)加拿大特伦特大学毕业证如何办理
一比一原版(trent学位证书)加拿大特伦特大学毕业证如何办理
onyvo
 
Traditional Flavors, Modern Techniques.docx
Traditional Flavors, Modern Techniques.docxTraditional Flavors, Modern Techniques.docx
Traditional Flavors, Modern Techniques.docx
misbahrajpoot13579
 
💋Call Girls Delhi 💯Call Us 🔝 9873940964 🔝💃Independent Delhi Escorts Service A...
💋Call Girls Delhi 💯Call Us 🔝 9873940964 🔝💃Independent Delhi Escorts Service A...💋Call Girls Delhi 💯Call Us 🔝 9873940964 🔝💃Independent Delhi Escorts Service A...
💋Call Girls Delhi 💯Call Us 🔝 9873940964 🔝💃Independent Delhi Escorts Service A...
ayesha$L14
 
Bangalore Call Girls Service 🔥 9079923931 🔥 High Profile Call Girls Bangalore
Bangalore Call Girls Service 🔥 9079923931 🔥 High Profile Call Girls BangaloreBangalore Call Girls Service 🔥 9079923931 🔥 High Profile Call Girls Bangalore
Bangalore Call Girls Service 🔥 9079923931 🔥 High Profile Call Girls Bangalore
warmaroshni09
 
❣Call Girl Near Surat 💯Call Us 🔝 7014168258 🔝💃Independent Surat Escorts Servi...
❣Call Girl Near Surat 💯Call Us 🔝 7014168258 🔝💃Independent Surat Escorts Servi...❣Call Girl Near Surat 💯Call Us 🔝 7014168258 🔝💃Independent Surat Escorts Servi...
❣Call Girl Near Surat 💯Call Us 🔝 7014168258 🔝💃Independent Surat Escorts Servi...
DishaGarg52
 
🔥VIP Call Girls Lucknow 💯Call Us 🔝 6350257716 🔝💃Independent Lucknow Escorts S...
🔥VIP Call Girls Lucknow 💯Call Us 🔝 6350257716 🔝💃Independent Lucknow Escorts S...🔥VIP Call Girls Lucknow 💯Call Us 🔝 6350257716 🔝💃Independent Lucknow Escorts S...
🔥VIP Call Girls Lucknow 💯Call Us 🔝 6350257716 🔝💃Independent Lucknow Escorts S...
janvikumar4133
 
Call Girls Pune 7742996321 Pune Call Girls Service
Call Girls Pune 7742996321 Pune Call Girls ServiceCall Girls Pune 7742996321 Pune Call Girls Service
Call Girls Pune 7742996321 Pune Call Girls Service
kartikkumar4563
 
🔥High Profile Call Girls Gurgaon 💯Call Us 🔝 9873777170 🔝💃Top Class Call Girl ...
🔥High Profile Call Girls Gurgaon 💯Call Us 🔝 9873777170 🔝💃Top Class Call Girl ...🔥High Profile Call Girls Gurgaon 💯Call Us 🔝 9873777170 🔝💃Top Class Call Girl ...
🔥High Profile Call Girls Gurgaon 💯Call Us 🔝 9873777170 🔝💃Top Class Call Girl ...
shasha$L14
 
Call Girls Kolkata 7742996321 Kolkata Call Girls Service
Call Girls Kolkata 7742996321 Kolkata Call Girls ServiceCall Girls Kolkata 7742996321 Kolkata Call Girls Service
Call Girls Kolkata 7742996321 Kolkata Call Girls Service
kartikkumar4563
 
🚺TRISHA PRASAD Independent Call Girls In Kolkata 💯Call Us 🔝 7014168258 🔝💃Top ...
🚺TRISHA PRASAD Independent Call Girls In Kolkata 💯Call Us 🔝 7014168258 🔝💃Top ...🚺TRISHA PRASAD Independent Call Girls In Kolkata 💯Call Us 🔝 7014168258 🔝💃Top ...
🚺TRISHA PRASAD Independent Call Girls In Kolkata 💯Call Us 🔝 7014168258 🔝💃Top ...
pawankumar98845
 
Kolkata Call Girls  💯 +91-9079923931 High Class Kolkata Escorts Service
Kolkata Call Girls  💯 +91-9079923931 High Class Kolkata Escorts ServiceKolkata Call Girls  💯 +91-9079923931 High Class Kolkata Escorts Service
Kolkata Call Girls  💯 +91-9079923931 High Class Kolkata Escorts Service
yogita singh$A17
 
100% Genuine Call Girls Lucknow ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Se...
100% Genuine Call Girls Lucknow ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Se...100% Genuine Call Girls Lucknow ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Se...
100% Genuine Call Girls Lucknow ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Se...
hina sharma$A17
 
Genuine Independent Call Girls Kolkata| 9079923931 |  With 100% Safe And Secu...
Genuine Independent Call Girls Kolkata| 9079923931 |  With 100% Safe And Secu...Genuine Independent Call Girls Kolkata| 9079923931 |  With 100% Safe And Secu...
Genuine Independent Call Girls Kolkata| 9079923931 |  With 100% Safe And Secu...
nima singh$A17
 
💋Newly Married Women Call Girls Gurgaon 💯Call Us 🔝 9999965857 🔝💃Independent G...
💋Newly Married Women Call Girls Gurgaon 💯Call Us 🔝 9999965857 🔝💃Independent G...💋Newly Married Women Call Girls Gurgaon 💯Call Us 🔝 9999965857 🔝💃Independent G...
💋Newly Married Women Call Girls Gurgaon 💯Call Us 🔝 9999965857 🔝💃Independent G...
Muskan Jaan
 
一比一原版美国宾夕法尼亚州立大学毕业证(penstate学位证)如何办理
一比一原版美国宾夕法尼亚州立大学毕业证(penstate学位证)如何办理一比一原版美国宾夕法尼亚州立大学毕业证(penstate学位证)如何办理
一比一原版美国宾夕法尼亚州立大学毕业证(penstate学位证)如何办理
p74xokfq
 
Delhi Call Girls Gurgaon 👉 9899900591 👈 unlimited short high profile full tru...
Delhi Call Girls Gurgaon 👉 9899900591 👈 unlimited short high profile full tru...Delhi Call Girls Gurgaon 👉 9899900591 👈 unlimited short high profile full tru...
Delhi Call Girls Gurgaon 👉 9899900591 👈 unlimited short high profile full tru...
disha rana $V15
 
💚Independent Call Girls In Delhi 💯Call Us 🔝 9899900591 🔝💃Top Class Call Girl ...
💚Independent Call Girls In Delhi 💯Call Us 🔝 9899900591 🔝💃Top Class Call Girl ...💚Independent Call Girls In Delhi 💯Call Us 🔝 9899900591 🔝💃Top Class Call Girl ...
💚Independent Call Girls In Delhi 💯Call Us 🔝 9899900591 🔝💃Top Class Call Girl ...
chawlaaanya019
 

Recently uploaded (20)

一比一原版迪肯大学毕业证(DU毕业证书)学历如何办理
一比一原版迪肯大学毕业证(DU毕业证书)学历如何办理一比一原版迪肯大学毕业证(DU毕业证书)学历如何办理
一比一原版迪肯大学毕业证(DU毕业证书)学历如何办理
 
一比一原版美国俄克拉荷马大学毕业证(ou学位证)如何办理
一比一原版美国俄克拉荷马大学毕业证(ou学位证)如何办理一比一原版美国俄克拉荷马大学毕业证(ou学位证)如何办理
一比一原版美国俄克拉荷马大学毕业证(ou学位证)如何办理
 
Noida Foods in Noida Sector 18,Delhi - Order Food Online
Noida Foods in Noida Sector 18,Delhi - Order Food OnlineNoida Foods in Noida Sector 18,Delhi - Order Food Online
Noida Foods in Noida Sector 18,Delhi - Order Food Online
 
一比一原版(trent学位证书)加拿大特伦特大学毕业证如何办理
一比一原版(trent学位证书)加拿大特伦特大学毕业证如何办理一比一原版(trent学位证书)加拿大特伦特大学毕业证如何办理
一比一原版(trent学位证书)加拿大特伦特大学毕业证如何办理
 
Traditional Flavors, Modern Techniques.docx
Traditional Flavors, Modern Techniques.docxTraditional Flavors, Modern Techniques.docx
Traditional Flavors, Modern Techniques.docx
 
💋Call Girls Delhi 💯Call Us 🔝 9873940964 🔝💃Independent Delhi Escorts Service A...
💋Call Girls Delhi 💯Call Us 🔝 9873940964 🔝💃Independent Delhi Escorts Service A...💋Call Girls Delhi 💯Call Us 🔝 9873940964 🔝💃Independent Delhi Escorts Service A...
💋Call Girls Delhi 💯Call Us 🔝 9873940964 🔝💃Independent Delhi Escorts Service A...
 
Bangalore Call Girls Service 🔥 9079923931 🔥 High Profile Call Girls Bangalore
Bangalore Call Girls Service 🔥 9079923931 🔥 High Profile Call Girls BangaloreBangalore Call Girls Service 🔥 9079923931 🔥 High Profile Call Girls Bangalore
Bangalore Call Girls Service 🔥 9079923931 🔥 High Profile Call Girls Bangalore
 
❣Call Girl Near Surat 💯Call Us 🔝 7014168258 🔝💃Independent Surat Escorts Servi...
❣Call Girl Near Surat 💯Call Us 🔝 7014168258 🔝💃Independent Surat Escorts Servi...❣Call Girl Near Surat 💯Call Us 🔝 7014168258 🔝💃Independent Surat Escorts Servi...
❣Call Girl Near Surat 💯Call Us 🔝 7014168258 🔝💃Independent Surat Escorts Servi...
 
🔥VIP Call Girls Lucknow 💯Call Us 🔝 6350257716 🔝💃Independent Lucknow Escorts S...
🔥VIP Call Girls Lucknow 💯Call Us 🔝 6350257716 🔝💃Independent Lucknow Escorts S...🔥VIP Call Girls Lucknow 💯Call Us 🔝 6350257716 🔝💃Independent Lucknow Escorts S...
🔥VIP Call Girls Lucknow 💯Call Us 🔝 6350257716 🔝💃Independent Lucknow Escorts S...
 
Call Girls Pune 7742996321 Pune Call Girls Service
Call Girls Pune 7742996321 Pune Call Girls ServiceCall Girls Pune 7742996321 Pune Call Girls Service
Call Girls Pune 7742996321 Pune Call Girls Service
 
🔥High Profile Call Girls Gurgaon 💯Call Us 🔝 9873777170 🔝💃Top Class Call Girl ...
🔥High Profile Call Girls Gurgaon 💯Call Us 🔝 9873777170 🔝💃Top Class Call Girl ...🔥High Profile Call Girls Gurgaon 💯Call Us 🔝 9873777170 🔝💃Top Class Call Girl ...
🔥High Profile Call Girls Gurgaon 💯Call Us 🔝 9873777170 🔝💃Top Class Call Girl ...
 
Call Girls Kolkata 7742996321 Kolkata Call Girls Service
Call Girls Kolkata 7742996321 Kolkata Call Girls ServiceCall Girls Kolkata 7742996321 Kolkata Call Girls Service
Call Girls Kolkata 7742996321 Kolkata Call Girls Service
 
🚺TRISHA PRASAD Independent Call Girls In Kolkata 💯Call Us 🔝 7014168258 🔝💃Top ...
🚺TRISHA PRASAD Independent Call Girls In Kolkata 💯Call Us 🔝 7014168258 🔝💃Top ...🚺TRISHA PRASAD Independent Call Girls In Kolkata 💯Call Us 🔝 7014168258 🔝💃Top ...
🚺TRISHA PRASAD Independent Call Girls In Kolkata 💯Call Us 🔝 7014168258 🔝💃Top ...
 
Kolkata Call Girls  💯 +91-9079923931 High Class Kolkata Escorts Service
Kolkata Call Girls  💯 +91-9079923931 High Class Kolkata Escorts ServiceKolkata Call Girls  💯 +91-9079923931 High Class Kolkata Escorts Service
Kolkata Call Girls  💯 +91-9079923931 High Class Kolkata Escorts Service
 
100% Genuine Call Girls Lucknow ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Se...
100% Genuine Call Girls Lucknow ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Se...100% Genuine Call Girls Lucknow ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Se...
100% Genuine Call Girls Lucknow ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Se...
 
Genuine Independent Call Girls Kolkata| 9079923931 |  With 100% Safe And Secu...
Genuine Independent Call Girls Kolkata| 9079923931 |  With 100% Safe And Secu...Genuine Independent Call Girls Kolkata| 9079923931 |  With 100% Safe And Secu...
Genuine Independent Call Girls Kolkata| 9079923931 |  With 100% Safe And Secu...
 
💋Newly Married Women Call Girls Gurgaon 💯Call Us 🔝 9999965857 🔝💃Independent G...
💋Newly Married Women Call Girls Gurgaon 💯Call Us 🔝 9999965857 🔝💃Independent G...💋Newly Married Women Call Girls Gurgaon 💯Call Us 🔝 9999965857 🔝💃Independent G...
💋Newly Married Women Call Girls Gurgaon 💯Call Us 🔝 9999965857 🔝💃Independent G...
 
一比一原版美国宾夕法尼亚州立大学毕业证(penstate学位证)如何办理
一比一原版美国宾夕法尼亚州立大学毕业证(penstate学位证)如何办理一比一原版美国宾夕法尼亚州立大学毕业证(penstate学位证)如何办理
一比一原版美国宾夕法尼亚州立大学毕业证(penstate学位证)如何办理
 
Delhi Call Girls Gurgaon 👉 9899900591 👈 unlimited short high profile full tru...
Delhi Call Girls Gurgaon 👉 9899900591 👈 unlimited short high profile full tru...Delhi Call Girls Gurgaon 👉 9899900591 👈 unlimited short high profile full tru...
Delhi Call Girls Gurgaon 👉 9899900591 👈 unlimited short high profile full tru...
 
💚Independent Call Girls In Delhi 💯Call Us 🔝 9899900591 🔝💃Top Class Call Girl ...
💚Independent Call Girls In Delhi 💯Call Us 🔝 9899900591 🔝💃Top Class Call Girl ...💚Independent Call Girls In Delhi 💯Call Us 🔝 9899900591 🔝💃Top Class Call Girl ...
💚Independent Call Girls In Delhi 💯Call Us 🔝 9899900591 🔝💃Top Class Call Girl ...
 

howcssworks-100207024009-phpapp01.pptx

  • 1. How CSS works Cascading Style Sheets (Session 8)
  • 2. What is CSS • Cascading Style Sheets • Contains the rules for the presentation of HTML. + = HTML CSS Web Page • CSS was introduced to keep the presentation information separate from HTML markup (content).
  • 3. Before CSS • Initially Designers used presentation tags like (FONT, B, BR, TABLE etc.) and spacers GIFs to control the design of web pages.
  • 4. • Any modification in the design of websites was a very difficult and boring task , as it evolves manually editing every HTML page.
  • 5. Providing support for multiple browsers was a difficult task.
  • 6. CSS – brief history • Style sheets have existed in one form or another since the beginnings of SGML in the 1970s. • In 1996, CSS level 1 Recommendation was published in December. • CSS level2 was published as a W3C Recommendation on May 12, 1998 • CSS level3 is still under development.
  • 7. Sources of Styles Author (developer) Styles • Inline Styles - As inline attribute “style” inside HTML tags <div style=“font-weight: bold;”>I am bold</div> • Embedded Styles - As embedded style tag with in HTML document. <html> <head> <title>Welcome to Vendio!</title> <style> .footer { width:90%; } </style> </html> • Linked Styles - Inside separate files with .css extension <link rel="stylesheet" href=“external.css" type="text/css" />
  • 8. Sources of Styles(contd.) • User Style sheets This file contains the user created styles . [firefox profile folder]/ chrome/userContent-example.css is the current user’s style sheet file for the firefox. • Browser default style sheet This file contains default styles for all users of a browser [firefox folder]/res/html.css is the default style sheet file for the firefox.
  • 9. Cascade The CSS cascade assigns a weight to each style rule. When several rules apply, the one with the greatest weight takes precedence. Order of preference for various styles: – Default browser style sheet (weakest) – User style sheet – Author style sheet – Author embedded styles – Author inline styles (strongest)
  • 10. CSS Selectors • ID based ( #) HTML <div id=“content”> Text </div> CSS #content { width: 200px; } ID selectors should be used with single elements.
  • 11. Class based selector • Class (.) HTML <div class=“big”> Text </div> <div> CSS .content { width: 200px; } <span class=“big”>some text </span> </div> Class based styles can be used by multiple HTML elements.
  • 12. Tag based selectors • Tag (Tag name) HTML CSS <div> DIV { Text width: 200px; </div> } <div> SPAN { <span>some text </span> font-size:130%; </div> } <span>some other text </span>
  • 13. Grouping • Multiple selectors can be grouped in a single style declaration by using , . H1, P , .main { font-weight:bold; }
  • 14. Descendant selectors Descendant selectors are used to select elements that are descendants (not necessarily children) of another element in the document tree. CSS DIV.abc P { font-weight:bold; } HTML <div class=“abc”> <div> <P> Hello there! </p> </div> </div>
  • 15. Child selectors A child selector is used to select an element that is a direct child of another element (parent). Child selectors will not select all descendants, only direct children. CSS DIV.abc > P { font-weight:bold; } HTML <div > <div class=“abc”> <P> Hello there! </p> </div> </div>
  • 16. Universal selectors Universal selectors are used to select any element. * { color: blue; }
  • 17. Adjacent sibling selectors Adjacent sibling selectors will select the sibling immediately following an element. DIV.abc + P { font-weight: bold; } will work for <div> <div class=“abc”>Message</div> <P>Hello there!</p> </div>
  • 18. Attribute selectors Attribute selectors selects elements based upon the attributes present in the HTML Tags and their value. IMG[src="small.gif"] { border: 1px solid #000; } will work for <img src=“small.gif” />
  翻译: