[csswg-drafts] [css-variables] shortening `prop: var(--x); ` to `props: --x; `

caub has just created a new issue for https://github.com/w3c/csswg-drafts:

== [css-variables] shortening `prop: var(--x);` to `props: --x;` ==
It should be non-ambiguous when then CSS variable is defined (on the left of `:`) or used

so this would be really great to have:
```css
:root {
  --x: blue;
}
div > span {
  color: --x;
}
```



Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2111 using your GitHub account

Received on Friday, 15 December 2017 15:27:54 UTC