Re: [css-variables] Why we can not use 'var()' function for normal property

On 6/2/15 2:14 PM, Marat Tanalin wrote:
>      a: var(b);
>      b: var(a);
>
> If we need to get the value of the `a` property, then we should then access `b` property referenced with `var(b)`. So we have "a, b" order.
>
> If we need to get the value of the `b` property, then we should then access `a` property referenced with `var(a)`. So we have "b, a" order.

OK, what happens with:

   a: var(b);
   b: var(c);
   d: var(e);
   e: color;

Does it depend on the nesting depth?  Does it depend on whether a or b 
is computed "first"?

-Boris

Received on Tuesday, 2 June 2015 18:17:02 UTC