- From: Henrik Helmers via GitHub <sysbot+gh@w3.org>
- Date: Fri, 27 Apr 2018 11:26:04 +0000
- To: public-css-archive@w3.org
The suggestion from @jonjohnjohnson does mostly cover my issue. So thanks for that! Falling back more than once is not very readable. The syntax with fallbacks inside the `var()` caught me by surprise. Instead of: ```color: var(--text, var(--textFallback, var(--textFallbackFallback, black)));``` It would be nicer to write: ```color: var(--text), var(--textFallback),var(--textFallbackFallback), black;``` If you are satisfied with the way it is today I am fine with closing this. -- GitHub Notification of comment by henrikhelmers Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2618#issuecomment-384942978 using your GitHub account
Received on Friday, 27 April 2018 11:26:07 UTC