SlideShare a Scribd company logo
CSS
Cascading Style Sheet
1998
CSS SELECTORS
• *{ } it means for all.
• .ClassName{ }
• #IDName{ }
• HTMLTag{ }
• div p { } Tag within Tag.
• ul li,div p{ } Multiple tag but Same properties
• h2+p{ } all ‘p’ Tag just come after ‘h2’ Tag
• div>P{ } ’p’ is child element of div Tag.
• img[data-type=“image”]{ }
• img[class=“image”]{ }
• a[href*=“hey”]{ } it means it applies all ‘a’ tag which have hey word in href anywhere
CSS PSEUDO ELEMENT
• a:link{ }
• a:active{ }
• a:hover{ }
• a:visited{ }
• p:not(.classname){ }
• p:not(#IdName){ }
• p:not(HTML TAGName){ }
• li:first-child{ }
• li:last-child{ }
• li:only-child{ } It means the list which has only one list item
• li:nth-child{2}
CSS PSEUDO ELEMENT
• p.ClassName::first-letter{ }
• p#IDName::first-letter{ }
• p.ClassName::first-line{ }
• p#IDName::first-line{ }
• div p:nth-of-type(2){ } It means 2nd type of ‘p’ tag within ‘div’ tag
SOME PROPERTIES ~~ PART-1
• font-size: px | em;
 15px is default; and 1em = 16px 
• font-family: ;
• font-style: normal | italic | oblique;
 oblique=italic
• font-weight: bold | normal;
• Line-height: px | em;
• word-spacing: px | em;
• text-decoration: underline | overline | line-through | none;
• text-indent: px;
• text-align: left | right | center | justify;
• max-width/height: px | em | %;
• min-width/height: px | em | %;
SOME PROPERTIES ~~ PART-2
• vertical-align: super | sub | px;
 super is superscript and sub is subscript will work as well as HTML SUPER/SUB
Script.
• border: size type colorValue;
• e.g.:- border:2px solid red;
• border-top | bottom | left | right: [size] [type] [colorValue];
• margin: px | % | auto;
• margin-top | bottom | left | right: px | %;
• padding: px | % | auto;
SOME PROPERTIES ~~ PART-3
• List-style-type: lower | upper-roman;
• List-style-type: lower | upper-alpha;
• List-style-type: circle | disc | square | none;
• List-style-image: url();
• background: [colorName | url()] [repeat| no-repeat] ;
• background-image: url();
• background-repeat: repeat | no-repeat | repeat-x | repeat-y;
• background-attachment: scroll |fixed;
• background-position: top left | px px;
SOME PROPERTIES ~~ PART-4
• z-index: 1 | -1;
 z-index means to place one HTML Element on to another HTML element.
• float: left | right | none;
• position: static | relative |absolute |fixed;
static position is default position
When we use ‘relative’ then ‘top’ CSS properties effect or move only those element not
all other element 
When we use ‘absolute’ It take position according to parent element or browser. 
When we use ‘fixed’ it does not move after scrolling the page. 
• display: inline | block | inline-block | none;
• opacity: 0 | 0.1 to 0.9 | 1;
• cursor: help | no-drop | pointer | progress | text | wait | zoom-in | zoom-out; & many
more.
SOME PROPERTIES ~~ PART-5
• overflow: hidden | scroll | auto | visible;
 hidden : will not show the overflowing text. 
 scroll: it will show the overflow text along with horizontal and vertical scroll bar. 
 auto: it will show horizontal and vertical scroll bar when the text is overflow.
CSS 3
Cascading Style Sheet
2012
CSS VS CSS3
Background multiple image
Border image
Border-radius
Transition
Animation
text-shadow
transform
Media-queries
SOME PROPERTIES~~ PART-1
• background-image: url(),url(); For multiple Image Background
• background-origin: border-box | padding-box | content-box;
• background-size: 100% / cover | x-value y-value; | contain;
• border-radius: ;
• box-shadow: [x-axis shadowValue] [y-axis shadowValue] [blur value]
[shadow value] [color value];
• border-image: [url()] [outset values in integer only not in pixel] [repeat | stretch];
 for generate border image just do google ‘border image generator’ and click on
the page link ‘developer.mozilla.org’ 
• animation: [AnimationName] [AnimationDuration][AnimationIterationCount]
[AnimationDirection] [AnimationTimingfunction]
@keyframes AnimationName{0%{css properties} 50%{css properties} 100%{css properties}}
 @keyframes: it is Animation tool.
ANIMATION EXAMPLE
TRANSITION~~ PART-1
• Transition means to change.
• To apply transition properties we need 2 div.
TRANSITION~~ PART-2
• transition: [transition-property] [transition-delay] [transition-time-function]
[transition-duration];
• Example:-
Ad

More Related Content

What's hot (20)

Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
Mario Hernandez
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
Amit Kumar Singh
 
Fundamental CSS3
Fundamental CSS3Fundamental CSS3
Fundamental CSS3
Achmad Solichin
 
Css Basics
Css BasicsCss Basics
Css Basics
Jay Patel
 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
Amit Tyagi
 
3 Layers of the Web - Part 1
3 Layers of the Web - Part 13 Layers of the Web - Part 1
3 Layers of the Web - Part 1
Jeremy White
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
Michael Jhon
 
HTML CSS JS in Nut shell
HTML  CSS JS in Nut shellHTML  CSS JS in Nut shell
HTML CSS JS in Nut shell
Ashwin Shiv
 
IPW 3rd Course - CSS
IPW 3rd Course - CSSIPW 3rd Course - CSS
IPW 3rd Course - CSS
Vlad Posea
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
Sanjeev Kumar
 
CSS
CSSCSS
CSS
People Strategists
 
Html & CSS
Html & CSSHtml & CSS
Html & CSS
JainilSampat
 
html-css
html-csshtml-css
html-css
Dhirendra Chauhan
 
Css introduction
Css  introductionCss  introduction
Css introduction
Nicha Jutasirivongse
 
HTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - IHTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - I
vincentleeuwen
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
Dave Kelly
 
HTML 5 Simple Tutorial Part 1
HTML 5 Simple Tutorial Part 1HTML 5 Simple Tutorial Part 1
HTML 5 Simple Tutorial Part 1
Sanjeev Kumar
 
Html - By Auroskkil
Html - By AuroskkilHtml - By Auroskkil
Html - By Auroskkil
BoneyGawande
 
Css1
Css1Css1
Css1
Vadim Spiridenko
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 

Similar to Css & css3 (20)

CSS and Layout
CSS and LayoutCSS and Layout
CSS and Layout
Jussi Pohjolainen
 
Lecture5.ppt C style sheet notes for B.CA and BIT
Lecture5.ppt C style sheet notes for B.CA and BITLecture5.ppt C style sheet notes for B.CA and BIT
Lecture5.ppt C style sheet notes for B.CA and BIT
RameshPrasadBhatta2
 
LeSS in action
LeSS in actionLeSS in action
LeSS in action
Pu Shiming
 
DotNetNuke World CSS3
DotNetNuke World CSS3DotNetNuke World CSS3
DotNetNuke World CSS3
gravityworksdd
 
Web - CSS 1.pptx
Web - CSS 1.pptxWeb - CSS 1.pptx
Web - CSS 1.pptx
haroon451422
 
CSS for basic learner
CSS for basic learnerCSS for basic learner
CSS for basic learner
Yoeung Vibol
 
CSS Cascade Style Sheet
CSS Cascade Style SheetCSS Cascade Style Sheet
CSS Cascade Style Sheet
Adeel Rasheed
 
Unit - 3 CSS(Cascading Style Sheet).pptx
Unit - 3 CSS(Cascading Style Sheet).pptxUnit - 3 CSS(Cascading Style Sheet).pptx
Unit - 3 CSS(Cascading Style Sheet).pptx
kushwahanitesh592
 
CSS presentation for beginners where they can understand easily
CSS presentation for beginners where they can understand easilyCSS presentation for beginners where they can understand easily
CSS presentation for beginners where they can understand easily
Indu32
 
css front end development , designing web page
css front end development , designing web pagecss front end development , designing web page
css front end development , designing web page
Indu32
 
CSS3 Refresher
CSS3 RefresherCSS3 Refresher
CSS3 Refresher
Ivano Malavolta
 
Css2
Css2Css2
Css2
Abhishek Kesharwani
 
Css2
Css2Css2
Css2
Abhishek Kesharwani
 
basics of css
basics of cssbasics of css
basics of css
Priya Goyal
 
IT2255 Web Essentials - Unit II Web Designing
IT2255 Web Essentials - Unit II  Web DesigningIT2255 Web Essentials - Unit II  Web Designing
IT2255 Web Essentials - Unit II Web Designing
pkaviya
 
HTML5 and CSS3 Refresher
HTML5 and CSS3 RefresherHTML5 and CSS3 Refresher
HTML5 and CSS3 Refresher
Ivano Malavolta
 
Chapter 13: Colors and Backgrounds
Chapter 13: Colors and BackgroundsChapter 13: Colors and Backgrounds
Chapter 13: Colors and Backgrounds
Steve Guinan
 
CSS
CSSCSS
CSS
Jussi Pohjolainen
 
Css
CssCss
Css
Vijay Raj Yanamala
 
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
 
Lecture5.ppt C style sheet notes for B.CA and BIT
Lecture5.ppt C style sheet notes for B.CA and BITLecture5.ppt C style sheet notes for B.CA and BIT
Lecture5.ppt C style sheet notes for B.CA and BIT
RameshPrasadBhatta2
 
LeSS in action
LeSS in actionLeSS in action
LeSS in action
Pu Shiming
 
CSS for basic learner
CSS for basic learnerCSS for basic learner
CSS for basic learner
Yoeung Vibol
 
CSS Cascade Style Sheet
CSS Cascade Style SheetCSS Cascade Style Sheet
CSS Cascade Style Sheet
Adeel Rasheed
 
Unit - 3 CSS(Cascading Style Sheet).pptx
Unit - 3 CSS(Cascading Style Sheet).pptxUnit - 3 CSS(Cascading Style Sheet).pptx
Unit - 3 CSS(Cascading Style Sheet).pptx
kushwahanitesh592
 
CSS presentation for beginners where they can understand easily
CSS presentation for beginners where they can understand easilyCSS presentation for beginners where they can understand easily
CSS presentation for beginners where they can understand easily
Indu32
 
css front end development , designing web page
css front end development , designing web pagecss front end development , designing web page
css front end development , designing web page
Indu32
 
IT2255 Web Essentials - Unit II Web Designing
IT2255 Web Essentials - Unit II  Web DesigningIT2255 Web Essentials - Unit II  Web Designing
IT2255 Web Essentials - Unit II Web Designing
pkaviya
 
HTML5 and CSS3 Refresher
HTML5 and CSS3 RefresherHTML5 and CSS3 Refresher
HTML5 and CSS3 Refresher
Ivano Malavolta
 
Chapter 13: Colors and Backgrounds
Chapter 13: Colors and BackgroundsChapter 13: Colors and Backgrounds
Chapter 13: Colors and Backgrounds
Steve Guinan
 
Ad

Recently uploaded (20)

LDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living WorkshopLDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDM Mia eStudios
 
Rock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian HistoryRock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian History
Virag Sontakke
 
UPMVLE migration to ARAL. A step- by- step guide
UPMVLE migration to ARAL. A step- by- step guideUPMVLE migration to ARAL. A step- by- step guide
UPMVLE migration to ARAL. A step- by- step guide
abmerca
 
Bridging the Transit Gap: Equity Drive Feeder Bus Design for Southeast Brooklyn
Bridging the Transit Gap: Equity Drive Feeder Bus Design for Southeast BrooklynBridging the Transit Gap: Equity Drive Feeder Bus Design for Southeast Brooklyn
Bridging the Transit Gap: Equity Drive Feeder Bus Design for Southeast Brooklyn
i4jd41bk
 
Myopathies (muscle disorders) for undergraduate
Myopathies (muscle disorders) for undergraduateMyopathies (muscle disorders) for undergraduate
Myopathies (muscle disorders) for undergraduate
Mohamed Rizk Khodair
 
How to Manage Upselling in Odoo 18 Sales
How to Manage Upselling in Odoo 18 SalesHow to Manage Upselling in Odoo 18 Sales
How to Manage Upselling in Odoo 18 Sales
Celine George
 
CNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscessCNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscess
Mohamed Rizk Khodair
 
Botany Assignment Help Guide - Academic Excellence
Botany Assignment Help Guide - Academic ExcellenceBotany Assignment Help Guide - Academic Excellence
Botany Assignment Help Guide - Academic Excellence
online college homework help
 
How to Share Accounts Between Companies in Odoo 18
How to Share Accounts Between Companies in Odoo 18How to Share Accounts Between Companies in Odoo 18
How to Share Accounts Between Companies in Odoo 18
Celine George
 
E-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26ASE-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26AS
Abinash Palangdar
 
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
Celine George
 
Ajanta Paintings: Study as a Source of History
Ajanta Paintings: Study as a Source of HistoryAjanta Paintings: Study as a Source of History
Ajanta Paintings: Study as a Source of History
Virag Sontakke
 
spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)
Mohamed Rizk Khodair
 
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptxTERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
PoojaSen20
 
*"Sensing the World: Insect Sensory Systems"*
*"Sensing the World: Insect Sensory Systems"**"Sensing the World: Insect Sensory Systems"*
*"Sensing the World: Insect Sensory Systems"*
Arshad Shaikh
 
MEDICAL BIOLOGY MCQS BY. DR NASIR MUSTAFA
MEDICAL BIOLOGY MCQS  BY. DR NASIR MUSTAFAMEDICAL BIOLOGY MCQS  BY. DR NASIR MUSTAFA
MEDICAL BIOLOGY MCQS BY. DR NASIR MUSTAFA
Dr. Nasir Mustafa
 
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptxU3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
Mayuri Chavan
 
What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)
jemille6
 
How to Create Kanban View in Odoo 18 - Odoo Slides
How to Create Kanban View in Odoo 18 - Odoo SlidesHow to Create Kanban View in Odoo 18 - Odoo Slides
How to Create Kanban View in Odoo 18 - Odoo Slides
Celine George
 
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living WorkshopLDMMIA Reiki Yoga S5 Daily Living Workshop
LDMMIA Reiki Yoga S5 Daily Living Workshop
LDM Mia eStudios
 
Rock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian HistoryRock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian History
Virag Sontakke
 
UPMVLE migration to ARAL. A step- by- step guide
UPMVLE migration to ARAL. A step- by- step guideUPMVLE migration to ARAL. A step- by- step guide
UPMVLE migration to ARAL. A step- by- step guide
abmerca
 
Bridging the Transit Gap: Equity Drive Feeder Bus Design for Southeast Brooklyn
Bridging the Transit Gap: Equity Drive Feeder Bus Design for Southeast BrooklynBridging the Transit Gap: Equity Drive Feeder Bus Design for Southeast Brooklyn
Bridging the Transit Gap: Equity Drive Feeder Bus Design for Southeast Brooklyn
i4jd41bk
 
Myopathies (muscle disorders) for undergraduate
Myopathies (muscle disorders) for undergraduateMyopathies (muscle disorders) for undergraduate
Myopathies (muscle disorders) for undergraduate
Mohamed Rizk Khodair
 
How to Manage Upselling in Odoo 18 Sales
How to Manage Upselling in Odoo 18 SalesHow to Manage Upselling in Odoo 18 Sales
How to Manage Upselling in Odoo 18 Sales
Celine George
 
CNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscessCNS infections (encephalitis, meningitis & Brain abscess
CNS infections (encephalitis, meningitis & Brain abscess
Mohamed Rizk Khodair
 
Botany Assignment Help Guide - Academic Excellence
Botany Assignment Help Guide - Academic ExcellenceBotany Assignment Help Guide - Academic Excellence
Botany Assignment Help Guide - Academic Excellence
online college homework help
 
How to Share Accounts Between Companies in Odoo 18
How to Share Accounts Between Companies in Odoo 18How to Share Accounts Between Companies in Odoo 18
How to Share Accounts Between Companies in Odoo 18
Celine George
 
E-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26ASE-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26AS
Abinash Palangdar
 
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
Celine George
 
Ajanta Paintings: Study as a Source of History
Ajanta Paintings: Study as a Source of HistoryAjanta Paintings: Study as a Source of History
Ajanta Paintings: Study as a Source of History
Virag Sontakke
 
spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)
Mohamed Rizk Khodair
 
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptxTERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
PoojaSen20
 
*"Sensing the World: Insect Sensory Systems"*
*"Sensing the World: Insect Sensory Systems"**"Sensing the World: Insect Sensory Systems"*
*"Sensing the World: Insect Sensory Systems"*
Arshad Shaikh
 
MEDICAL BIOLOGY MCQS BY. DR NASIR MUSTAFA
MEDICAL BIOLOGY MCQS  BY. DR NASIR MUSTAFAMEDICAL BIOLOGY MCQS  BY. DR NASIR MUSTAFA
MEDICAL BIOLOGY MCQS BY. DR NASIR MUSTAFA
Dr. Nasir Mustafa
 
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptxU3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
Mayuri Chavan
 
What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)What is the Philosophy of Statistics? (and how I was drawn to it)
What is the Philosophy of Statistics? (and how I was drawn to it)
jemille6
 
How to Create Kanban View in Odoo 18 - Odoo Slides
How to Create Kanban View in Odoo 18 - Odoo SlidesHow to Create Kanban View in Odoo 18 - Odoo Slides
How to Create Kanban View in Odoo 18 - Odoo Slides
Celine George
 
Ad

Css & css3

  • 2. CSS SELECTORS • *{ } it means for all. • .ClassName{ } • #IDName{ } • HTMLTag{ } • div p { } Tag within Tag. • ul li,div p{ } Multiple tag but Same properties • h2+p{ } all ‘p’ Tag just come after ‘h2’ Tag • div>P{ } ’p’ is child element of div Tag. • img[data-type=“image”]{ } • img[class=“image”]{ } • a[href*=“hey”]{ } it means it applies all ‘a’ tag which have hey word in href anywhere
  • 3. CSS PSEUDO ELEMENT • a:link{ } • a:active{ } • a:hover{ } • a:visited{ } • p:not(.classname){ } • p:not(#IdName){ } • p:not(HTML TAGName){ } • li:first-child{ } • li:last-child{ } • li:only-child{ } It means the list which has only one list item • li:nth-child{2}
  • 4. CSS PSEUDO ELEMENT • p.ClassName::first-letter{ } • p#IDName::first-letter{ } • p.ClassName::first-line{ } • p#IDName::first-line{ } • div p:nth-of-type(2){ } It means 2nd type of ‘p’ tag within ‘div’ tag
  • 5. SOME PROPERTIES ~~ PART-1 • font-size: px | em;  15px is default; and 1em = 16px  • font-family: ; • font-style: normal | italic | oblique;  oblique=italic • font-weight: bold | normal; • Line-height: px | em; • word-spacing: px | em; • text-decoration: underline | overline | line-through | none; • text-indent: px; • text-align: left | right | center | justify; • max-width/height: px | em | %; • min-width/height: px | em | %;
  • 6. SOME PROPERTIES ~~ PART-2 • vertical-align: super | sub | px;  super is superscript and sub is subscript will work as well as HTML SUPER/SUB Script. • border: size type colorValue; • e.g.:- border:2px solid red; • border-top | bottom | left | right: [size] [type] [colorValue]; • margin: px | % | auto; • margin-top | bottom | left | right: px | %; • padding: px | % | auto;
  • 7. SOME PROPERTIES ~~ PART-3 • List-style-type: lower | upper-roman; • List-style-type: lower | upper-alpha; • List-style-type: circle | disc | square | none; • List-style-image: url(); • background: [colorName | url()] [repeat| no-repeat] ; • background-image: url(); • background-repeat: repeat | no-repeat | repeat-x | repeat-y; • background-attachment: scroll |fixed; • background-position: top left | px px;
  • 8. SOME PROPERTIES ~~ PART-4 • z-index: 1 | -1;  z-index means to place one HTML Element on to another HTML element. • float: left | right | none; • position: static | relative |absolute |fixed; static position is default position When we use ‘relative’ then ‘top’ CSS properties effect or move only those element not all other element  When we use ‘absolute’ It take position according to parent element or browser.  When we use ‘fixed’ it does not move after scrolling the page.  • display: inline | block | inline-block | none; • opacity: 0 | 0.1 to 0.9 | 1; • cursor: help | no-drop | pointer | progress | text | wait | zoom-in | zoom-out; & many more.
  • 9. SOME PROPERTIES ~~ PART-5 • overflow: hidden | scroll | auto | visible;  hidden : will not show the overflowing text.   scroll: it will show the overflow text along with horizontal and vertical scroll bar.   auto: it will show horizontal and vertical scroll bar when the text is overflow.
  • 10. CSS 3 Cascading Style Sheet 2012
  • 11. CSS VS CSS3 Background multiple image Border image Border-radius Transition Animation text-shadow transform Media-queries
  • 12. SOME PROPERTIES~~ PART-1 • background-image: url(),url(); For multiple Image Background • background-origin: border-box | padding-box | content-box; • background-size: 100% / cover | x-value y-value; | contain; • border-radius: ; • box-shadow: [x-axis shadowValue] [y-axis shadowValue] [blur value] [shadow value] [color value]; • border-image: [url()] [outset values in integer only not in pixel] [repeat | stretch];  for generate border image just do google ‘border image generator’ and click on the page link ‘developer.mozilla.org’  • animation: [AnimationName] [AnimationDuration][AnimationIterationCount] [AnimationDirection] [AnimationTimingfunction] @keyframes AnimationName{0%{css properties} 50%{css properties} 100%{css properties}}  @keyframes: it is Animation tool.
  • 14. TRANSITION~~ PART-1 • Transition means to change. • To apply transition properties we need 2 div.
  • 15. TRANSITION~~ PART-2 • transition: [transition-property] [transition-delay] [transition-time-function] [transition-duration]; • Example:-
  翻译: