Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Give CSS3 Some Love / FOWD2015

Dan Cork
November 04, 2015

Give CSS3 Some Love / FOWD2015

Give CSS3 Some Love
Future of Web Design 2015 - Rising Stars

Dan Cork

November 04, 2015
Tweet

More Decks by Dan Cork

Other Decks in Technology

Transcript

  1. T oo often the web interface ends up being the

    lowest common denominator Henrik Joreteg
  2. Less than half of web is responsive! IE is dying

    CSS is your friend CSS3 usage is poor
  3. @media (light-level: dim) { .app { background: black; color: white;

    } } @media (light-level: washed) { .app { background: white; color: black; } }
  4. .element .tooltip { /* hide tooltip */ } @media (hover)

    { .element .inline-tooltip { /* hide inline tooltip */ } .element:hover .tooltip { /* show tooltip */ } }
  5. Feature queries removes reliance on JavaScript :has() is too awesome!!!

    New media queries, understand the environment better