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

The evolution of CSS - 2

The evolution of CSS - 2

Mattia Larentis

February 05, 2013
Tweet

More Decks by Mattia Larentis

Other Decks in Programming

Transcript

  1. WIN

  2. A system written in another language that adds lots of

    tasty goodies that don’t exists natively, while still spitting out something a browser can understand
  3. .my-class { h1 { font-weight: bold; } p { font-size:

    12px; a { text-decoration: none; &:hover { color: @red; } } } }
  4. .my-class h1 { font-weight: bold; } .my-class p { font-size:

    12px; } .my-class p a { text-decoration: none; } .my-class p a:hover { color: #842210; }