SlideShare a Scribd company logo
1 of 167
CSS3
  - is everything
we used to do
  wrong ?
re living in
we a
         times
exciting
better
 browsers
IE 9
   Safari 5
 Opera 11
Chrome 11
  Firefox 5
      IE 10
IE 9
   Safari 5
 Opera 11
Chrome 11
  Firefox 5
      IE 10
IE 9
   Safari 5
 Opera 11
Chrome 11
  Firefox 5
      IE 10
Opera 11:
Best HTML5 forms
     support
<input   type="color">
<input   type="date">
<input   type="number">
<input   type="range">
Opera 11:
    Best CSS3
backgrounds support
p { background-repeat: space; }
p { background-repeat: round; }

div { background-origin:
   padding-box; }

div { background-clip:
   padding-box; }

div { background-size: cover; }
div { background-size: contain;}
p
{
    background-position:
    left 10px top 15px;
}
IE 9
   Safari 5
 Opera 11
Chrome 11
  Firefox 5
      IE 10
Chrome 11:
Slightly ahead of
    Safari 5
background-image:     Safari 5
-webkit-gradient(linear,
left center, right center,
from(yellow), to(black));
background-image:     Safari 5
-webkit-gradient(linear,
left center, right center,
from(yellow), to(black));

background-image:      Chrome 11
-webkit-linear-gradient
(left, yellow, black);
IE 9
   Safari 5
 Opera 11
Chrome 11
  Firefox 5
      IE 10
21 June 2011??
IE 9
   Safari 5
 Opera 11
Chrome 11
  Firefox 5
      IE 10
Preview released:
  11 April 2011
Release:
early 2012?
are w ork   ing w ith
If you
              s h o u ld b e p a y in g
 CS S3, you
        ion to th e latest
 attent
 n ightly   builds?
http://nightly.webkit.org/
http://nightly.mozilla.org/
http://tools.google.com/dlpage/chromesxs
http://www.opera.com/browser/download/
cool
 CS S 3
       stuff
Transforms & transitions
Linear & radial gradients
CSS3 selectors
Border-radius
Box-shadow
Text-shadow
@font-face
And more!
Transforms & transitions
Linear & radial gradients
CSS3 selectors
Border-radius
Box-shadow
Text-shadow
@font-face
And more!
Transforms & transitions
Linear & radial gradients
CSS3 selectors
Border-radius
Box-shadow
Text-shadow
@font-face
And more!
Transforms & transitions
Linear & radial gradients
CSS3 selectors
Border-radius
Box-shadow
Text-shadow
@font-face
And more!
Transforms & transitions
Linear & radial gradients
CSS3 selectors
Border-radius
Box-shadow
Text-shadow
@font-face
And more!
Transforms & transitions
Linear & radial gradients
CSS3 selectors
Border-radius
Box-shadow
Text-shadow
@font-face
And more!
Transforms & transitions
Linear & radial gradients
CSS3 selectors
Border-radius
Box-shadow
Text-shadow
@font-face
And more!
Transforms & transitions
Linear & radial gradients
CSS3 selectors
Border-radius
Box-shadow
Text-shadow
@font-face
And more!
Befo
       re w
              e ge
                   t too
                           exc
                               ited
                                      ā€¦




              few th ings to
her e are a
                     mind
   ep             in
 ke
use CSS3 fo
           r the right

 re asons
W hile C S S 3 is
                   exciting,
w e h a ve to b e
                  c a re fu l
about how an
                 d
when we us
                e it.
r th a t s im p ly u s e
R a th e
          because        its c o o l,
CSS3
            u ld b e lo   o k in g a t
we sho
           ess rea     s o n s fo r
 busin
 i m p le m e n  tin g it.
Web fonts
         Less images
        Improved UX
    Device targeting
 Faster page speeds
Efļ¬cient site building
Ease of maintenance
@font-face
{
font-family: 'fontName';
src:
url('font.eot?')
   format('eot'
url('font.woff')
   format('woff'),
url('font.ttf')
   format('truetype');
}
Web fonts
         Less images
        Improved UX
    Device targeting
 Faster page speeds
Efļ¬cient site building
Ease of maintenance
Web fonts
         Less images
        Improved UX
    Device targeting
 Faster page speeds
Efļ¬cient site building
Ease of maintenance
section:target
{ background: lime; }

#section1:target
{ background: lightgreen; }

::selection
{
   color: #fff;
   background: #000;
}
Web fonts
         Less images
        Improved UX
    Device targeting
 Faster page speeds
Efļ¬cient site building
Ease of maintenance
@media all and
(max-device-width: 480px)
{
}

@media all and
(min-device-width: 481px) and
(max-device-width: 1024px) and
(orientation:portrait)
{
}
Web fonts
         Less images
        Improved UX
    Device targeting
 Faster page speeds
Efļ¬cient site building
Ease of maintenance
Web fonts
         Less images
        Improved UX
    Device targeting
 Faster page speeds
Efļ¬cient site building
Ease of maintenance
Web fonts
         Less images
        Improved UX
    Device targeting
 Faster page speeds
Efļ¬cient site building
Ease of maintenance
be aware of
            potential

   issues
Browser support
Vendor extensions
Changing syntax
Unstable Structural
Browser support
Vendor extensions
Changing syntax
Unstable Structural
Vendor-specific property
div
{
-webkit-border-radius: 10px;
}
Vendor-specific value
div
{
background-image:
-moz-linear-gradient
(left, yellow, black);
}
Vendor-specific property & value
div
{
-webkit-transition:
-webkit-transform 1s;
}
Different vendor extensions
div
{
-o-border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
Browser support
Vendor extensions
Changing syntax
Unstable Structural
background-image:
-webkit-gradient(linear,
left center, right center,
from(yellow), to(black));

background-image:
-moz-linear-gradient
(left, yellow, black);
Browser support
Vendor extensions
Changing syntax
Unstable Structural selectors
:last-child { }
:only-child { }
:first-of-type { }
:last-of-type { }
:only-of-type { }
:empty { }
:nth-child(n) { }
:nth-last-child(n) { }
:nth-of-type(n) { }
:nth-last-of-type(n) { }
rtin g a n y p ro je c t,
B e fo re s ta
           d to k n o   w w h ic h
you n e e
         ers and     devices
brows
          o be sup       ported
 need t
This will help y
                    ou determine
 progressive e                    if
                  nhancement o
other solution                   r
                  s are needed
f o r y ou r p roj
                   e ct
learn the ba
            sics

   f irst
ig n e rs ju m p in to
M any des
              out k n o w  ing the
C S S 3 w ith
b asics of    CSS2.1
M a n y a s p e c ts
                     of CSS3
build on top
                     of CSS2.1
22
CSS2.1 selectors
36
CSS3 selectors
Older IE issues like haslayout
The block formatting context
   Complex CSS2.1 selector
    Initial values & shorthand
     The various box-models
        Inheritance & cascade
                   Float basics
Older IE issues like haslayout
The block formatting context
   Complex CSS2.1 selector
    Initial values & shorthand
     The various box-models
        Inheritance & cascade
                   Float basics
Older IE issues like haslayout
The block formatting context
   Complex CSS2.1 selector
    Initial values & shorthand
     The various box-models
        Inheritance & cascade
                   Float basics
Older IE issues like haslayout
The block formatting context
   Complex CSS2.1 selector
    Initial values & shorthand
     The various box-models
        Inheritance & cascade
                   Float basics
p {
background:
    [background-image]
    [background-position]
    [/ background-size]
    [background-repeat]
    [background-attachment]
    [background-origin]
    [background-clip]
    [background-color];
}
Older IE issues like haslayout
The block formatting context
   Complex CSS2.1 selector
    Initial values & shorthand
     The various box-models
        Inheritance & cascade
                   Float basics
E:lang(c)
E:first-child
E:first-line
E:first-letter
E:before
E:after
E[att]
E[att=val]
E[att~=val]
E[att|=val]
Older IE issues like haslayout
The block formatting context
   Complex CSS2.1 selector
    Initial values & shorthand
     The various box-models
        Inheritance & cascade
                   Float basics
.intro
{ overflow: hidden; }

.intro
{ float: left; }

.intro
{ display: inline-block; }
Older IE issues like haslayout
The block formatting context
   Complex CSS2.1 selector
    Initial values & shorthand
     The various box-models
        Inheritance & cascade
                   Float basics
.intro
{ position: relative; }

.intro
{ zoom: 1; }
fo c us
on the bigge
             r   issues
ality is th at CSS3
The re
             ne aspe    ct of the
is j u s t o
 de  veloper       toolkit
W e should be
                 exploring
how we can m
                 ake our desig
and developm                   n
                ent practices
m ore e fficie
               nt & flexible
how
     do   we b
               ecom
more               e
     efficie
            nt
more flex
          ible
more efficien
             t

 CS S
CSS resets
CSS resets ai
               m to remove a
 browser-spec                  ll
               iļ¬c styles, and
 build CSS up                  then
              again from sc
so that each e               ratch -
              lement will ap
the same in                   pear
             all browsers
html,body,div,span,applet,object,iframe,h1,h2,
h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,
address,big,cite,code,del,dfn,em,img,ins,kbd,q,
s,samp,small,strike,strong,sub,sup,tt,var,b,u,
i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,
legend,table,caption,tbody,tfoot,thead,tr,th,
td,article,aside,canvas,details,embed,figure,
figcaption,footer,header,hgroup,menu,nav,
output,ruby,section,summary,time,mark,audio,
video
{
      margin:0;
      padding:0;
      border:0;
      font-size:100%;
      font: inherit;
      vertical-align: baseline;
}
Strengths:
Efļ¬cient development
Strengths:
Efļ¬cient development
Strengths:
Efļ¬cient development
Consistency for teams
Strengths:
Efļ¬cient development
Consistency for teams

Weaknesses:
Applied without thought
lots of additional rewriting
Strengths:
Efļ¬cient development
Consistency for teams

Weaknesses:
lots of additional rewriting
CSS frameworks
CSS framewo
                 rks are pre-pr
libraries that a               epared
                re meant to al
easier, stand                  low for
                 ards-compli
styling of web                 ant
                pages.
rameworks      focus on
Many f                       velopers
lay out grids,  allowing de
      ll in library classes to
 to pu
     ld comple      x layouts
 bui
.column, .span-1, .span-2, .span-
3, .span-4, .span-5, .span-6,
.span-7, .span-8, .span-9, .span-
10, .span-11, .span-12, .span-13,
.span-14, .span-15, .span-16,
.span-17, .span-18, .span-19,
.span-20, .span-21, .span-22,
.span-23, .span-24
{float:left;margin-right:10px;}
Strength
Efļ¬cient development
                Lean,
Strength
Efļ¬cient development
                Lean,
Strength
 Efļ¬cient development
Lean, abstracted CSS
Strength
      Efļ¬cient development
     Lean, abstracted CSS

             Weaknesses
      Designs that donā€™t ļ¬t
      Bloated frameworks
Presentational class names
Strength
      Efļ¬cient development
     Lean, abstracted CSS

             Weaknesses
      Designs that donā€™t ļ¬t
      Bloated frameworks
Presentational class names
Strength
      Efļ¬cient development
     Lean, abstracted CSS

             Weaknesses
      Designs that donā€™t ļ¬t
      Bloated frameworks
Presentational class names
Strength
      Efļ¬cient development
     Lean, abstracted CSS

             Weaknesses
      Designs that donā€™t ļ¬t
      Bloated frameworks
Presentational class names
Keep in mind
              you can alway
roll you r ow                s
              n fram e w ork
smarter

   CSS
Object-oriented CSS
Object-oriente
               d CSS styles
ā€œobjectsā€ or ā€œm              HTML
                odulesā€ with
cleaner, mor
              e efficient C
                            SS
For all the har
                dcore develop
yes, itā€™s not re                 ersā€¦
                 ally object-orie
Itā€™s just a na                   nted.
                me!
How many times
does your CSS file
  mention H2 or
   ā€œfloat: leftā€?
Do you ever find
yourself styling
using Firebug?
There is a stro
                ng chance tha
 you may be ā€œd                   t
                 oing it wrongā€
or could at lea                 ,
                st be
ā€œdoing it bet
               terā€
How?
e starting your CSS,
Befor
    k at your layouts and
loo
 try to find patterns
Are there asp
               ects of the
layout that co
              uld be
abstracted i
              nto library it
                            ems?
Strengths
lean, robust CSS
Strengths
lean, robust CSS
Strengths
lean, robust CSS
easier site maintenance
Strengths
lean, robust CSS
easier site maintenance
avoid repetitive CSS
Strengths
lean, robust CSS
easier site maintenance
avoid repetitive CSS
avoid speciļ¬city wars
Strengths
lean, robust CSS
easier site maintenance
avoid repetitive CSS
avoid speciļ¬city wars

Weaknesses
additional HTML classes
new mindset
Strengths
lean, robust CSS
easier site maintenance
avoid repetitive CSS
avoid speciļ¬city wars

Weaknesses
additional HTML classes
new mindset
Strengths
lean, robust CSS
easier site maintenance
avoid repetitive CSS
avoid speciļ¬city wars

Weaknesses
additional HTML classes
new mindset
more powerf
           ul
development
Pre-processors
Pre-processo
              rs allow us to
variables in                 use
              CSS files and
parse them to                  then
               regular stylesh
                              eets.
LESS
  SASS
 Turbine
Switch CSS
  DtCSS
CSS Crush
Variables
@color1:   red;
@color2:   green;
@color3:   blue;
@color4:   orange;
@color5:   brown;

#a { background: @color1; }
Minification
div{width:200px;height:200px;-
webkit-border-radius:10px;-
moz-border-radius:10px;border-
radius:10px;}
#one{background:red;-webkit-
border-radius:20px;-moz-
border-radius:20px;border-
radius:20px;}#one
a{color:green;}
#two{background:green;-webkit-
border-radius:30px;-moz-
Mixins
.border-radius(@radius: 5px)
{
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}

div { .border-radius(); }
Packing
Gzipping
Compiling
Strength
Strength
faster development
Strength
faster development
variables!
Strength
faster development
variables!

Weaknesses
Strength
faster development
variables!

Weaknesses
deep nesting
#nav
{
   background: @color1;
   li
   {
      list-style: none

        a { color: green; }
    }
}
Strength
faster development
variables!

Weaknesses
deep nesting
inefļ¬cient CSS
Strength
faster development
variables!

Weaknesses
deep nesting
inefļ¬cient CSS
entirely new syntax
more respon
           sive

 d es ign
What is
Responsive design?
Until recently,
                people built si
for desktop                    tes
               and/or mobi
                              le only
Responsive   design is
    ut creating sites that
abo
ad apt to an  y device
Problem 1:
solving screen size
Ideally, we wa
                 nt to start with
single linear la                  a
                yout that can
viewed by a                     be
                ny device
we gradua  lly build a
Then
  ries of adva nced ļ¬‚uid
se
          n top, con  trolled by
layouts o                   aScript
 m edia que  ries or Jav
@media only screen and
(min-width: 800px) and
(max-width: 999px)
{
}

@media only screen and
(min-width: 1000px)
{
}
This means w
                 e can deliver
entirely differe
                nt layouts
based on the
                  viewport
Problem 2:
solving bandwidth
      issues
But what abo
            ut
images and
            other   media?
lly, we sho uld deliver
Idea
          images    and media
low end
 as the default
Then we deliv
                er larger, riche
for those dev                   r media
                 ices that can
(or at least tho                  cope
                se devices wit
suitable band                   h the
               width)
Problem 3:
content and context
Another probl
               em we face is
 determining w
                hat types of
content shoul
               d be delivered
devices, and i                to
              n what contex
people are u                 t are
              sing the site
simple as delivering
It is not as
       ed back c  ontent for
 stripp
 mobile d  evices and
          ntent for  desktops
 rich co
The reality is t
                hat these last
problems are                   two
                not solved yet
But a chang                    .
               e is coming
re at a tipp ing point.
I think we a                   going to
     y soon, a m  ajor site is
 Ver                        lems and
 c rack these  three prob
                way we b      uild sites
 ch  ange the
wrap
       up
hell am I
      what the
So,
            ng?
        sayi
be aware of th
               e
potential iss
              ues
learn the b asics
    fore divin  g in
 be
focus on the
bigger issue
               s
W rite e fficie ntly
D esign
    responsively
thank you
     Russ Weakley
   @russmaxdesign
 www.maxdesign.com.au

More Related Content

What's hot

JavaScript & Dom Manipulation
JavaScript & Dom ManipulationJavaScript & Dom Manipulation
JavaScript & Dom ManipulationMohammed Arif
Ā 
Javascript Basic
Javascript BasicJavascript Basic
Javascript BasicKang-min Liu
Ā 
Introduction to SASS
Introduction to SASSIntroduction to SASS
Introduction to SASSJon Dean
Ā 
CSS For Backend Developers
CSS For Backend DevelopersCSS For Backend Developers
CSS For Backend Developers10Clouds
Ā 
JavaScript - Chapter 9 - TypeConversion and Regular Expressions
 JavaScript - Chapter 9 - TypeConversion and Regular Expressions  JavaScript - Chapter 9 - TypeConversion and Regular Expressions
JavaScript - Chapter 9 - TypeConversion and Regular Expressions WebStackAcademy
Ā 
JavaScript - Chapter 3 - Introduction
 JavaScript - Chapter 3 - Introduction JavaScript - Chapter 3 - Introduction
JavaScript - Chapter 3 - IntroductionWebStackAcademy
Ā 
CSS Best practice
CSS Best practiceCSS Best practice
CSS Best practiceRuss Weakley
Ā 
CSS Positioning and Features of CSS3
CSS Positioning and Features of CSS3CSS Positioning and Features of CSS3
CSS Positioning and Features of CSS3Jaimin Brahmbhatt
Ā 
Introduction to Cascading Style Sheets
Introduction to Cascading Style SheetsIntroduction to Cascading Style Sheets
Introduction to Cascading Style SheetsTushar Joshi
Ā 
CSS INHERITANCE
CSS INHERITANCECSS INHERITANCE
CSS INHERITANCEAnuradha
Ā 
JavaScript - Chapter 8 - Objects
 JavaScript - Chapter 8 - Objects JavaScript - Chapter 8 - Objects
JavaScript - Chapter 8 - ObjectsWebStackAcademy
Ā 
JavaScript - Part-1
JavaScript - Part-1JavaScript - Part-1
JavaScript - Part-1Jainul Musani
Ā 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginnersSingsys Pte Ltd
Ā 
Flexbox and Grid Layout
Flexbox and Grid LayoutFlexbox and Grid Layout
Flexbox and Grid LayoutRachel Andrew
Ā 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basicsEliran Eliassy
Ā 
Object Oriented CSS
Object Oriented CSSObject Oriented CSS
Object Oriented CSSNicole Sullivan
Ā 
1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introductionapnwebdev
Ā 

What's hot (20)

JavaScript & Dom Manipulation
JavaScript & Dom ManipulationJavaScript & Dom Manipulation
JavaScript & Dom Manipulation
Ā 
Javascript Basic
Javascript BasicJavascript Basic
Javascript Basic
Ā 
Introduction to SASS
Introduction to SASSIntroduction to SASS
Introduction to SASS
Ā 
CSS For Backend Developers
CSS For Backend DevelopersCSS For Backend Developers
CSS For Backend Developers
Ā 
JavaScript - Chapter 9 - TypeConversion and Regular Expressions
 JavaScript - Chapter 9 - TypeConversion and Regular Expressions  JavaScript - Chapter 9 - TypeConversion and Regular Expressions
JavaScript - Chapter 9 - TypeConversion and Regular Expressions
Ā 
Flex box
Flex boxFlex box
Flex box
Ā 
JavaScript - Chapter 3 - Introduction
 JavaScript - Chapter 3 - Introduction JavaScript - Chapter 3 - Introduction
JavaScript - Chapter 3 - Introduction
Ā 
CSS Best practice
CSS Best practiceCSS Best practice
CSS Best practice
Ā 
CSS Positioning and Features of CSS3
CSS Positioning and Features of CSS3CSS Positioning and Features of CSS3
CSS Positioning and Features of CSS3
Ā 
Introduction to Cascading Style Sheets
Introduction to Cascading Style SheetsIntroduction to Cascading Style Sheets
Introduction to Cascading Style Sheets
Ā 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
Ā 
CSS INHERITANCE
CSS INHERITANCECSS INHERITANCE
CSS INHERITANCE
Ā 
JavaScript - Chapter 8 - Objects
 JavaScript - Chapter 8 - Objects JavaScript - Chapter 8 - Objects
JavaScript - Chapter 8 - Objects
Ā 
JavaScript - Part-1
JavaScript - Part-1JavaScript - Part-1
JavaScript - Part-1
Ā 
SASS - CSS with Superpower
SASS - CSS with SuperpowerSASS - CSS with Superpower
SASS - CSS with Superpower
Ā 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginners
Ā 
Flexbox and Grid Layout
Flexbox and Grid LayoutFlexbox and Grid Layout
Flexbox and Grid Layout
Ā 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Ā 
Object Oriented CSS
Object Oriented CSSObject Oriented CSS
Object Oriented CSS
Ā 
1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introduction
Ā 

Viewers also liked

Microsoft TechDays - CSS3 Presentation
Microsoft TechDays - CSS3 PresentationMicrosoft TechDays - CSS3 Presentation
Microsoft TechDays - CSS3 PresentationRachel Andrew
Ā 
Structure Web Content
Structure Web ContentStructure Web Content
Structure Web ContentNicole Ryan
Ā 
Laying Out Elements with CSS
Laying Out Elements with CSSLaying Out Elements with CSS
Laying Out Elements with CSSNicole Ryan
Ā 
Getting Started with CSS
Getting Started with CSSGetting Started with CSS
Getting Started with CSSNicole Ryan
Ā 
Tutorial: Html5 And Css3 Site
Tutorial: Html5 And Css3 SiteTutorial: Html5 And Css3 Site
Tutorial: Html5 And Css3 SiteAdam Stewart
Ā 
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 34-90
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 34-90Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 34-90
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 34-90Paolo Sordi
Ā 
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 1-33
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 1-33Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 1-33
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 1-33Paolo Sordi
Ā 
Progettazione e realizzazione di siti web, a.a. 2013-2014
Progettazione e realizzazione di siti web, a.a. 2013-2014Progettazione e realizzazione di siti web, a.a. 2013-2014
Progettazione e realizzazione di siti web, a.a. 2013-2014Paolo Sordi
Ā 
How to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & TricksHow to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & TricksSlideShare
Ā 
Everything You know about CSS is Wrong
Everything You know about CSS is WrongEverything You know about CSS is Wrong
Everything You know about CSS is Wrongchandleryu
Ā 
Getting Started With SlideShare
Getting Started With SlideShareGetting Started With SlideShare
Getting Started With SlideShareSlideShare
Ā 
PresentacioĢn Multimedia - HTML5
PresentacioĢn Multimedia - HTML5PresentacioĢn Multimedia - HTML5
PresentacioĢn Multimedia - HTML5Viviana Trujillo
Ā 
ąø•ąø±ąø§ąø­ąø¢ą¹ˆąø²ąø‡ Workshop basic html5 and css3 ąøˆąø²ąøą¹„ąø­ąø—ąøµąøˆąøµą¹€ąø™ąøµąø¢ąøŖ
ąø•ąø±ąø§ąø­ąø¢ą¹ˆąø²ąø‡ Workshop basic html5 and css3 ąøˆąø²ąøą¹„ąø­ąø—ąøµąøˆąøµą¹€ąø™ąøµąø¢ąøŖąø•ąø±ąø§ąø­ąø¢ą¹ˆąø²ąø‡ Workshop basic html5 and css3 ąøˆąø²ąøą¹„ąø­ąø—ąøµąøˆąøµą¹€ąø™ąøµąø¢ąøŖ
ąø•ąø±ąø§ąø­ąø¢ą¹ˆąø²ąø‡ Workshop basic html5 and css3 ąøˆąø²ąøą¹„ąø­ąø—ąøµąøˆąøµą¹€ąø™ąøµąø¢ąøŖSamit Koyom
Ā 
Techdays 2012 - DĆ©veloppement Web Mobile avec Microsoft
Techdays 2012 - DĆ©veloppement Web Mobile avec MicrosoftTechdays 2012 - DĆ©veloppement Web Mobile avec Microsoft
Techdays 2012 - DĆ©veloppement Web Mobile avec Microsoftwyggio
Ā 
Formatting text with CSS
Formatting text with CSSFormatting text with CSS
Formatting text with CSSNicole Ryan
Ā 
I phone 4s-n94_schematics
I phone 4s-n94_schematicsI phone 4s-n94_schematics
I phone 4s-n94_schematicsAnonmos Bird
Ā 
The Future State of Layout
The Future State of LayoutThe Future State of Layout
The Future State of LayoutStephen Hay
Ā 
MedPower2016_S4_Paper003_SinisaSpremicPresentation
MedPower2016_S4_Paper003_SinisaSpremicPresentationMedPower2016_S4_Paper003_SinisaSpremicPresentation
MedPower2016_S4_Paper003_SinisaSpremicPresentationSinisa Spremic
Ā 

Viewers also liked (20)

Microsoft TechDays - CSS3 Presentation
Microsoft TechDays - CSS3 PresentationMicrosoft TechDays - CSS3 Presentation
Microsoft TechDays - CSS3 Presentation
Ā 
Structure Web Content
Structure Web ContentStructure Web Content
Structure Web Content
Ā 
Laying Out Elements with CSS
Laying Out Elements with CSSLaying Out Elements with CSS
Laying Out Elements with CSS
Ā 
Getting Started with CSS
Getting Started with CSSGetting Started with CSS
Getting Started with CSS
Ā 
Tutorial: Html5 And Css3 Site
Tutorial: Html5 And Css3 SiteTutorial: Html5 And Css3 Site
Tutorial: Html5 And Css3 Site
Ā 
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 34-90
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 34-90Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 34-90
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 34-90
Ā 
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 1-33
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 1-33Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 1-33
Progettazione e realizzazione di siti web, a.a. 2014-2015, slide 1-33
Ā 
Progettazione e realizzazione di siti web, a.a. 2013-2014
Progettazione e realizzazione di siti web, a.a. 2013-2014Progettazione e realizzazione di siti web, a.a. 2013-2014
Progettazione e realizzazione di siti web, a.a. 2013-2014
Ā 
How to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & TricksHow to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & Tricks
Ā 
Everything You know about CSS is Wrong
Everything You know about CSS is WrongEverything You know about CSS is Wrong
Everything You know about CSS is Wrong
Ā 
Getting Started With SlideShare
Getting Started With SlideShareGetting Started With SlideShare
Getting Started With SlideShare
Ā 
PresentacioĢn Multimedia - HTML5
PresentacioĢn Multimedia - HTML5PresentacioĢn Multimedia - HTML5
PresentacioĢn Multimedia - HTML5
Ā 
ąø•ąø±ąø§ąø­ąø¢ą¹ˆąø²ąø‡ Workshop basic html5 and css3 ąøˆąø²ąøą¹„ąø­ąø—ąøµąøˆąøµą¹€ąø™ąøµąø¢ąøŖ
ąø•ąø±ąø§ąø­ąø¢ą¹ˆąø²ąø‡ Workshop basic html5 and css3 ąøˆąø²ąøą¹„ąø­ąø—ąøµąøˆąøµą¹€ąø™ąøµąø¢ąøŖąø•ąø±ąø§ąø­ąø¢ą¹ˆąø²ąø‡ Workshop basic html5 and css3 ąøˆąø²ąøą¹„ąø­ąø—ąøµąøˆąøµą¹€ąø™ąøµąø¢ąøŖ
ąø•ąø±ąø§ąø­ąø¢ą¹ˆąø²ąø‡ Workshop basic html5 and css3 ąøˆąø²ąøą¹„ąø­ąø—ąøµąøˆąøµą¹€ąø™ąøµąø¢ąøŖ
Ā 
Techdays 2012 - DĆ©veloppement Web Mobile avec Microsoft
Techdays 2012 - DĆ©veloppement Web Mobile avec MicrosoftTechdays 2012 - DĆ©veloppement Web Mobile avec Microsoft
Techdays 2012 - DĆ©veloppement Web Mobile avec Microsoft
Ā 
Formatting text with CSS
Formatting text with CSSFormatting text with CSS
Formatting text with CSS
Ā 
I phone 4s-n94_schematics
I phone 4s-n94_schematicsI phone 4s-n94_schematics
I phone 4s-n94_schematics
Ā 
The Future State of Layout
The Future State of LayoutThe Future State of Layout
The Future State of Layout
Ā 
Physics2ndpaper
Physics2ndpaperPhysics2ndpaper
Physics2ndpaper
Ā 
MedPower2016_S4_Paper003_SinisaSpremicPresentation
MedPower2016_S4_Paper003_SinisaSpremicPresentationMedPower2016_S4_Paper003_SinisaSpremicPresentation
MedPower2016_S4_Paper003_SinisaSpremicPresentation
Ā 
C Tutorial Bangla Introduction 00
C Tutorial Bangla Introduction 00C Tutorial Bangla Introduction 00
C Tutorial Bangla Introduction 00
Ā 

Similar to CSS3 - is everything we used to do wrong?

CSS3 and a brief introduction to Google Maps API v3
CSS3 and a brief introduction to Google Maps API v3 CSS3 and a brief introduction to Google Maps API v3
CSS3 and a brief introduction to Google Maps API v3 Jeffrey Barke
Ā 
Progressive enhancement - Bridging the gap between CSS2 and CSS3
Progressive enhancement - Bridging the gap between CSS2 and CSS3Progressive enhancement - Bridging the gap between CSS2 and CSS3
Progressive enhancement - Bridging the gap between CSS2 and CSS3Zohar Arad
Ā 
Progressive enhancement
Progressive enhancementProgressive enhancement
Progressive enhancementZohar Arad
Ā 
Controlling Web Typography
Controlling Web TypographyControlling Web Typography
Controlling Web TypographyTrent Walton
Ā 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignClarissa Peterson
Ā 
CSS Methodology
CSS MethodologyCSS Methodology
CSS MethodologyZohar Arad
Ā 
OOScss Architecture For Rails Apps
OOScss Architecture For Rails AppsOOScss Architecture For Rails Apps
OOScss Architecture For Rails AppsNetguru
Ā 
CSS3: Are you experienced?
CSS3: Are you experienced?CSS3: Are you experienced?
CSS3: Are you experienced?Denise Jacobs
Ā 
presentation
presentationpresentation
presentationMart Bosch
Ā 
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.comA brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.comapplicake
Ā 
Intro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS featuresIntro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS featuresAndreas Bovens
Ā 
Teams, styles and scalable applications
Teams, styles and scalable applicationsTeams, styles and scalable applications
Teams, styles and scalable applicationsVittorio Vittori
Ā 
Enhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web DesignEnhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web DesignEric Overfield
Ā 
Knowing it all
Knowing it allKnowing it all
Knowing it allRachel Andrew
Ā 
Developing for Responsive Design - Frederic Welterlin
Developing for Responsive Design - Frederic WelterlinDeveloping for Responsive Design - Frederic Welterlin
Developing for Responsive Design - Frederic WelterlinRazorfish
Ā 
CSS Frameworks: Categories, Criteria and Recommendations
CSS Frameworks: Categories, Criteria and RecommendationsCSS Frameworks: Categories, Criteria and Recommendations
CSS Frameworks: Categories, Criteria and Recommendationssirajrkhan
Ā 

Similar to CSS3 - is everything we used to do wrong? (20)

Css3 101
Css3 101Css3 101
Css3 101
Ā 
CSS3 and a brief introduction to Google Maps API v3
CSS3 and a brief introduction to Google Maps API v3 CSS3 and a brief introduction to Google Maps API v3
CSS3 and a brief introduction to Google Maps API v3
Ā 
Progressive enhancement - Bridging the gap between CSS2 and CSS3
Progressive enhancement - Bridging the gap between CSS2 and CSS3Progressive enhancement - Bridging the gap between CSS2 and CSS3
Progressive enhancement - Bridging the gap between CSS2 and CSS3
Ā 
Progressive enhancement
Progressive enhancementProgressive enhancement
Progressive enhancement
Ā 
Controlling Web Typography
Controlling Web TypographyControlling Web Typography
Controlling Web Typography
Ā 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
Ā 
CSS Methodology
CSS MethodologyCSS Methodology
CSS Methodology
Ā 
OOScss Architecture For Rails Apps
OOScss Architecture For Rails AppsOOScss Architecture For Rails Apps
OOScss Architecture For Rails Apps
Ā 
CSS3: Are you experienced?
CSS3: Are you experienced?CSS3: Are you experienced?
CSS3: Are you experienced?
Ā 
presentation
presentationpresentation
presentation
Ā 
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.comA brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
A brief look at CSS3 techniques by Aaron Rodgers, Web Designer @ vzaar.com
Ā 
Intro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS featuresIntro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS features
Ā 
Fundamental CSS3
Fundamental CSS3Fundamental CSS3
Fundamental CSS3
Ā 
Teams, styles and scalable applications
Teams, styles and scalable applicationsTeams, styles and scalable applications
Teams, styles and scalable applications
Ā 
Enhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web DesignEnhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web Design
Ā 
slides-students-C04.pdf
slides-students-C04.pdfslides-students-C04.pdf
slides-students-C04.pdf
Ā 
Knowing it all
Knowing it allKnowing it all
Knowing it all
Ā 
Developing for Responsive Design - Frederic Welterlin
Developing for Responsive Design - Frederic WelterlinDeveloping for Responsive Design - Frederic Welterlin
Developing for Responsive Design - Frederic Welterlin
Ā 
Evolution of CSS
Evolution of CSSEvolution of CSS
Evolution of CSS
Ā 
CSS Frameworks: Categories, Criteria and Recommendations
CSS Frameworks: Categories, Criteria and RecommendationsCSS Frameworks: Categories, Criteria and Recommendations
CSS Frameworks: Categories, Criteria and Recommendations
Ā 

More from Russ Weakley

Accessible chat windows
Accessible chat windowsAccessible chat windows
Accessible chat windowsRuss Weakley
Ā 
Accessible names & descriptions
Accessible names & descriptionsAccessible names & descriptions
Accessible names & descriptionsRuss Weakley
Ā 
A deep dive into accessible names
A deep dive into accessible namesA deep dive into accessible names
A deep dive into accessible namesRuss Weakley
Ā 
What are accessible names and why should you care?
What are accessible names and why should you care?What are accessible names and why should you care?
What are accessible names and why should you care?Russ Weakley
Ā 
How to build accessible UI components
How to build accessible UI componentsHow to build accessible UI components
How to build accessible UI componentsRuss Weakley
Ā 
What is WCAG 2 and why should we care?
What is WCAG 2 and why should we care?What is WCAG 2 and why should we care?
What is WCAG 2 and why should we care?Russ Weakley
Ā 
Accessible states in Design Systems
Accessible states in Design SystemsAccessible states in Design Systems
Accessible states in Design SystemsRuss Weakley
Ā 
Creating accessible modals and autocompletes
Creating accessible modals and autocompletesCreating accessible modals and autocompletes
Creating accessible modals and autocompletesRuss Weakley
Ā 
Building an accessible progressive loader
Building an accessible progressive loaderBuilding an accessible progressive loader
Building an accessible progressive loaderRuss Weakley
Ā 
Accessibility in Design systems - the pain and glory
Accessibility in Design systems - the pain and gloryAccessibility in Design systems - the pain and glory
Accessibility in Design systems - the pain and gloryRuss Weakley
Ā 
Accessible Inline errors messages
Accessible Inline errors messagesAccessible Inline errors messages
Accessible Inline errors messagesRuss Weakley
Ā 
Accessible Form Hints and Errors
Accessible Form Hints and ErrorsAccessible Form Hints and Errors
Accessible Form Hints and ErrorsRuss Weakley
Ā 
What is accessibility?
What is accessibility?What is accessibility?
What is accessibility?Russ Weakley
Ā 
Accessibility in Pattern Libraries
Accessibility in Pattern LibrariesAccessibility in Pattern Libraries
Accessibility in Pattern LibrariesRuss Weakley
Ā 
Accessibility in pattern libraries
Accessibility in pattern librariesAccessibility in pattern libraries
Accessibility in pattern librariesRuss Weakley
Ā 
Building an accessible auto-complete - #ID24
Building an accessible auto-complete - #ID24Building an accessible auto-complete - #ID24
Building an accessible auto-complete - #ID24Russ Weakley
Ā 
Building an accessible auto-complete
Building an accessible auto-completeBuilding an accessible auto-complete
Building an accessible auto-completeRuss Weakley
Ā 
Creating Acessible floating labels
Creating Acessible floating labelsCreating Acessible floating labels
Creating Acessible floating labelsRuss Weakley
Ā 
Creating an Accessible button dropdown
Creating an Accessible button dropdownCreating an Accessible button dropdown
Creating an Accessible button dropdownRuss Weakley
Ā 
Creating a Simple, Accessible On/Off Switch
Creating a Simple, Accessible On/Off SwitchCreating a Simple, Accessible On/Off Switch
Creating a Simple, Accessible On/Off SwitchRuss Weakley
Ā 

More from Russ Weakley (20)

Accessible chat windows
Accessible chat windowsAccessible chat windows
Accessible chat windows
Ā 
Accessible names & descriptions
Accessible names & descriptionsAccessible names & descriptions
Accessible names & descriptions
Ā 
A deep dive into accessible names
A deep dive into accessible namesA deep dive into accessible names
A deep dive into accessible names
Ā 
What are accessible names and why should you care?
What are accessible names and why should you care?What are accessible names and why should you care?
What are accessible names and why should you care?
Ā 
How to build accessible UI components
How to build accessible UI componentsHow to build accessible UI components
How to build accessible UI components
Ā 
What is WCAG 2 and why should we care?
What is WCAG 2 and why should we care?What is WCAG 2 and why should we care?
What is WCAG 2 and why should we care?
Ā 
Accessible states in Design Systems
Accessible states in Design SystemsAccessible states in Design Systems
Accessible states in Design Systems
Ā 
Creating accessible modals and autocompletes
Creating accessible modals and autocompletesCreating accessible modals and autocompletes
Creating accessible modals and autocompletes
Ā 
Building an accessible progressive loader
Building an accessible progressive loaderBuilding an accessible progressive loader
Building an accessible progressive loader
Ā 
Accessibility in Design systems - the pain and glory
Accessibility in Design systems - the pain and gloryAccessibility in Design systems - the pain and glory
Accessibility in Design systems - the pain and glory
Ā 
Accessible Inline errors messages
Accessible Inline errors messagesAccessible Inline errors messages
Accessible Inline errors messages
Ā 
Accessible Form Hints and Errors
Accessible Form Hints and ErrorsAccessible Form Hints and Errors
Accessible Form Hints and Errors
Ā 
What is accessibility?
What is accessibility?What is accessibility?
What is accessibility?
Ā 
Accessibility in Pattern Libraries
Accessibility in Pattern LibrariesAccessibility in Pattern Libraries
Accessibility in Pattern Libraries
Ā 
Accessibility in pattern libraries
Accessibility in pattern librariesAccessibility in pattern libraries
Accessibility in pattern libraries
Ā 
Building an accessible auto-complete - #ID24
Building an accessible auto-complete - #ID24Building an accessible auto-complete - #ID24
Building an accessible auto-complete - #ID24
Ā 
Building an accessible auto-complete
Building an accessible auto-completeBuilding an accessible auto-complete
Building an accessible auto-complete
Ā 
Creating Acessible floating labels
Creating Acessible floating labelsCreating Acessible floating labels
Creating Acessible floating labels
Ā 
Creating an Accessible button dropdown
Creating an Accessible button dropdownCreating an Accessible button dropdown
Creating an Accessible button dropdown
Ā 
Creating a Simple, Accessible On/Off Switch
Creating a Simple, Accessible On/Off SwitchCreating a Simple, Accessible On/Off Switch
Creating a Simple, Accessible On/Off Switch
Ā 

Recently uploaded

Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsManeerUddin
Ā 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
Ā 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
Ā 
Visit to a blind student's schoolšŸ§‘ā€šŸ¦ÆšŸ§‘ā€šŸ¦Æ(community medicine)
Visit to a blind student's schoolšŸ§‘ā€šŸ¦ÆšŸ§‘ā€šŸ¦Æ(community medicine)Visit to a blind student's schoolšŸ§‘ā€šŸ¦ÆšŸ§‘ā€šŸ¦Æ(community medicine)
Visit to a blind student's schoolšŸ§‘ā€šŸ¦ÆšŸ§‘ā€šŸ¦Æ(community medicine)lakshayb543
Ā 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
Ā 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
Ā 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A BeƱa
Ā 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
Ā 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...SeƔn Kennedy
Ā 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
Ā 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
Ā 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in oneā€™s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in oneā€™s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in oneā€™s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in oneā€™s own words. Use appropr...JojoEDelaCruz
Ā 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
Ā 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
Ā 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
Ā 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
Ā 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
Ā 

Recently uploaded (20)

YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
Ā 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture hons
Ā 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
Ā 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
Ā 
Visit to a blind student's schoolšŸ§‘ā€šŸ¦ÆšŸ§‘ā€šŸ¦Æ(community medicine)
Visit to a blind student's schoolšŸ§‘ā€šŸ¦ÆšŸ§‘ā€šŸ¦Æ(community medicine)Visit to a blind student's schoolšŸ§‘ā€šŸ¦ÆšŸ§‘ā€šŸ¦Æ(community medicine)
Visit to a blind student's schoolšŸ§‘ā€šŸ¦ÆšŸ§‘ā€šŸ¦Æ(community medicine)
Ā 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
Ā 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Ā 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
Ā 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
Ā 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
Ā 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
Ā 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
Ā 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Ā 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in oneā€™s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in oneā€™s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in oneā€™s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in oneā€™s own words. Use appropr...
Ā 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
Ā 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
Ā 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Ā 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
Ā 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
Ā 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
Ā 

CSS3 - is everything we used to do wrong?