[csswg-drafts] [css-variables] point to URL

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

== [css-variables] point to URL ==
When referring to the URL variable is not recognized.
Neither bellow wont work.

CSS
```
:root {
        --pic1: url("../img/test/i-06.jpg");
        --pic2: "../img/test/i-07.jpg";
}

#a1 { background-image: var(--pic1); }
#a2 { background-image: url(var(--pic2)); }

```

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

Received on Wednesday, 31 August 2016 16:54:52 UTC