Re: [css-variables] ...let's change the syntax

* Sylvain Galineau wrote:
>I do not think it is useful or helpful to extrapolate Pavlov reflexes 
>from the past, at least not without some context. There is a huge 
>difference between the infamous:
>
>#something {
> -webkit-border-radius: 5px;
> -moz-border-radius: 5px;
> -o-border-radius: 5px;
> border:radius: 5px;
>}
>
>…and an hypothetical future:
>
>.orOther {
> width: 200px
> height: 200px;
> —jquery-scroll: carousel(...);
> —sassy-framework-says: groovy;
>}
>

I am more concerned about having to debug through

  #something {
    -webkit-border-radius: 5px;
    width: 200px
    -moz-border-radius: 5px;
    height: 200px;
    -jquery-scroll: carousel(...);
    -o-border-radius: 5px;
    border:radius: 5px;
    -sassy-framework-says: groovy;
  }

to use your example.
-- 
Björn Höhrmann · mailto:bjoern@hoehrmann.de · http://bjoern.hoehrmann.de
Am Badedeich 7 · Telefon: +49(0)160/4415681 · http://www.bjoernsworld.de
25899 Dagebüll · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/ 

Received on Monday, 17 March 2014 19:04:48 UTC