SlideShare uma empresa Scribd logo
1 de 20
CSS3
Using advanced CSS to speed up development.
Browser Support
     Most of todays techniques
are supported by modern browsers.
Shadow Stacking
Using multiple shadows to achieve a layered effect.




box-shadow:
   #444 0 20px 20px -10px,
   #888 0 1px 3px;
Shadow Stacking
Stacking shadows to create
corners with the pseudo elements
       ‘:before’ and ‘:after’
text-shadow:
    #FFF 1px 1px,
                           Creating stripes
    #555 2px 2px,
    #555 3px 3px,
    #FFF 4px 4px,
                           on text can be
    #888 5px 5px,
    #FFF 6px 6px,          achieved with a
    #295097 7px 7px,
    #295097 8px 8px,
    #295097 9px 9px,
                           few lines of
    #444 10px 10px 10px;
                           code.
text-shadow:
    #888 4px 4px 18px,
                         Layered text
    #BBB 1px 1px,
    #BBB 2px 2px,
                         makes great
    #BBB 3px 3px,
    #BBB 4px 4px,
                         headlines.
    #BBB 5px 5px,
    #BBB 6px 6px,
    #BBB 7px 7px,
    #BBB 8px 8px,
    #BBB 9px 9px,
    #000 9px 9px 10px;
Backgrounds
       Multiple Background Images


background:
  url('images/number1.png') no-repeat scroll top left,
  url('images/number2.png') no-repeat scroll top right,
  url('images/number3.png') no-repeat scroll bottom left,
  url('images/number4.png') no-repeat scroll bottom right;
Background Gradients

    background: linear-gradient(#F6F6F6, #E3E3E3);



Vendor Prefixes
•   -webkit-               Can also use the
•   -moz-                  technique of multiple
•   -ms-                   gradients per background.
•   -o-
background: #88779F;
background: -webkit-linear-gradient (#88779F, #685B79);
background: -moz-linear-gradient (#88779F, #685B79);
background: -ms-linear-gradient (#88779F, #685B79);
background: -o-linear-gradient (#88779F, #685B79);
background: linear-gradient(#88779F, #685B79);




        USING VENDOR PREFIXES
Multiple Color Stops

background:
   linear-gradient(
      #F483ED,
      #67D168 40%,
      #EB7C7E 70%,
      #91D3E1);




background:
   linear-gradient(
      #353535,
      #242424 50%,
      #2A2A2A 50%,
      #1A1A1A);
Other Uses for Gradients
Other Uses for Gradients




 Using pseudo elements, gradients and rgba colors
Transitions &
Transformations
Transitions &
Transformations
Transitions &
Transformations
Transitions &
     Transformations

   Great for creating unique hover effects.

             Easy to implement code:



transition: property .2s ease/linear;

 Must use vendor prefixes here and can be used on any state.
CSS3 Ribbons
Pseudo Elements:   Stacking Properties
 :before             position:
 :after              z-index:
CSS3
Using advanced CSS to speed up development.

Mais conteúdo relacionado

Semelhante a Advanced CSS Techniques

CSS3 Tips & Techniques
CSS3 Tips & TechniquesCSS3 Tips & Techniques
CSS3 Tips & Techniques
UIEpreviews
 
Sass, Compass and the new tools - Open Web Camp IV
Sass, Compass and the new tools - Open Web Camp IVSass, Compass and the new tools - Open Web Camp IV
Sass, Compass and the new tools - Open Web Camp IV
Dirk Ginader
 
[WebVisions 2010] CSS3 Workshop (Afternoon)
[WebVisions 2010] CSS3 Workshop (Afternoon)[WebVisions 2010] CSS3 Workshop (Afternoon)
[WebVisions 2010] CSS3 Workshop (Afternoon)
Christopher Schmitt
 
Mobile-first OOCSS, Sass & Compass at BBC Responsive News
Mobile-first OOCSS, Sass & Compass at BBC Responsive NewsMobile-first OOCSS, Sass & Compass at BBC Responsive News
Mobile-first OOCSS, Sass & Compass at BBC Responsive News
Kaelig Deloumeau-Prigent
 
Rapid Prototyping
Rapid PrototypingRapid Prototyping
Rapid Prototyping
Even Wu
 

Semelhante a Advanced CSS Techniques (20)

The Basics of CSS3
The Basics of CSS3The Basics of CSS3
The Basics of CSS3
 
CSS3 Tips & Techniques
CSS3 Tips & TechniquesCSS3 Tips & Techniques
CSS3 Tips & Techniques
 
Sass compass
Sass compassSass compass
Sass compass
 
Learn to love CSS3 | Joomla! Day Deutschland
Learn to love CSS3 | Joomla! Day DeutschlandLearn to love CSS3 | Joomla! Day Deutschland
Learn to love CSS3 | Joomla! Day Deutschland
 
Sass, Compass and the new tools - Open Web Camp IV
Sass, Compass and the new tools - Open Web Camp IVSass, Compass and the new tools - Open Web Camp IV
Sass, Compass and the new tools - Open Web Camp IV
 
Learn to Love CSS3 [English]
Learn to Love CSS3 [English]Learn to Love CSS3 [English]
Learn to Love CSS3 [English]
 
10 Advanced CSS Techniques (You Wish You Knew More About)
10 Advanced CSS Techniques (You Wish You Knew More About)10 Advanced CSS Techniques (You Wish You Knew More About)
10 Advanced CSS Techniques (You Wish You Knew More About)
 
CSS3 3D Workshop
CSS3 3D WorkshopCSS3 3D Workshop
CSS3 3D Workshop
 
Web Design Trends 2010 - What Is CSS3 All About?
Web Design Trends 2010 - What Is CSS3 All About?Web Design Trends 2010 - What Is CSS3 All About?
Web Design Trends 2010 - What Is CSS3 All About?
 
Css3
Css3Css3
Css3
 
Basics of html5, data_storage, css3
Basics of html5, data_storage, css3Basics of html5, data_storage, css3
Basics of html5, data_storage, css3
 
Css3 101
Css3 101Css3 101
Css3 101
 
CSS3 pronti all'uso
CSS3 pronti all'usoCSS3 pronti all'uso
CSS3 pronti all'uso
 
[WebVisions 2010] CSS3 Workshop (Afternoon)
[WebVisions 2010] CSS3 Workshop (Afternoon)[WebVisions 2010] CSS3 Workshop (Afternoon)
[WebVisions 2010] CSS3 Workshop (Afternoon)
 
CSS3 is Not Magic Pixie Dust
CSS3 is Not Magic Pixie DustCSS3 is Not Magic Pixie Dust
CSS3 is Not Magic Pixie Dust
 
CSS and CSS3
CSS and CSS3CSS and CSS3
CSS and CSS3
 
popular posts widget
popular posts widgetpopular posts widget
popular posts widget
 
Mobile-first OOCSS, Sass & Compass at BBC Responsive News
Mobile-first OOCSS, Sass & Compass at BBC Responsive NewsMobile-first OOCSS, Sass & Compass at BBC Responsive News
Mobile-first OOCSS, Sass & Compass at BBC Responsive News
 
HTML5 e Css3 - 4 | WebMaster & WebDesigner
HTML5 e Css3 - 4 | WebMaster & WebDesignerHTML5 e Css3 - 4 | WebMaster & WebDesigner
HTML5 e Css3 - 4 | WebMaster & WebDesigner
 
Rapid Prototyping
Rapid PrototypingRapid Prototyping
Rapid Prototyping
 

Último

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Último (20)

Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 

Advanced CSS Techniques

  • 1. CSS3 Using advanced CSS to speed up development.
  • 2. Browser Support Most of todays techniques are supported by modern browsers.
  • 3. Shadow Stacking Using multiple shadows to achieve a layered effect. box-shadow: #444 0 20px 20px -10px, #888 0 1px 3px;
  • 5. Stacking shadows to create corners with the pseudo elements ‘:before’ and ‘:after’
  • 6. text-shadow: #FFF 1px 1px, Creating stripes #555 2px 2px, #555 3px 3px, #FFF 4px 4px, on text can be #888 5px 5px, #FFF 6px 6px, achieved with a #295097 7px 7px, #295097 8px 8px, #295097 9px 9px, few lines of #444 10px 10px 10px; code.
  • 7. text-shadow: #888 4px 4px 18px, Layered text #BBB 1px 1px, #BBB 2px 2px, makes great #BBB 3px 3px, #BBB 4px 4px, headlines. #BBB 5px 5px, #BBB 6px 6px, #BBB 7px 7px, #BBB 8px 8px, #BBB 9px 9px, #000 9px 9px 10px;
  • 8. Backgrounds Multiple Background Images background: url('images/number1.png') no-repeat scroll top left, url('images/number2.png') no-repeat scroll top right, url('images/number3.png') no-repeat scroll bottom left, url('images/number4.png') no-repeat scroll bottom right;
  • 9. Background Gradients background: linear-gradient(#F6F6F6, #E3E3E3); Vendor Prefixes • -webkit- Can also use the • -moz- technique of multiple • -ms- gradients per background. • -o-
  • 10. background: #88779F; background: -webkit-linear-gradient (#88779F, #685B79); background: -moz-linear-gradient (#88779F, #685B79); background: -ms-linear-gradient (#88779F, #685B79); background: -o-linear-gradient (#88779F, #685B79); background: linear-gradient(#88779F, #685B79); USING VENDOR PREFIXES
  • 11. Multiple Color Stops background: linear-gradient( #F483ED, #67D168 40%, #EB7C7E 70%, #91D3E1); background: linear-gradient( #353535, #242424 50%, #2A2A2A 50%, #1A1A1A);
  • 12. Other Uses for Gradients
  • 13. Other Uses for Gradients Using pseudo elements, gradients and rgba colors
  • 17. Transitions & Transformations Great for creating unique hover effects. Easy to implement code: transition: property .2s ease/linear; Must use vendor prefixes here and can be used on any state.
  • 19. Pseudo Elements: Stacking Properties :before position: :after z-index:
  • 20. CSS3 Using advanced CSS to speed up development.

Notas do Editor

  1. What is CSS3? \nAdvanced CSS techniques for web design. \n\n\n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. What is CSS3? \nAdvanced CSS techniques for web design. \n\n\n