Re: [csswg-drafts] [css-variables] Whether to support override a property using itself?

Can you clarify what you are trying to do? Use a value but have 
children inherit another? The css way to achieve this is to have two 
properties.

```
* {
  --main-color: var(--inherited-main-color);
}

:root {
  --main-color: #aaa;
  --inherited-main-color: #bbb;
}
```

-- 
GitHub Notification of comment by FremyCompany
Please view or discuss this issue at 
https://github.com/w3c/csswg-drafts/issues/876#issuecomment-271660651 
using your GitHub account

Received on Tuesday, 10 January 2017 18:43:53 UTC