- From: Michael C. via GitHub <sysbot+gh@w3.org>
- Date: Wed, 18 Aug 2021 09:27:53 +0000
- To: public-css-archive@w3.org
If I'm understanding what you wrote correctly, that just seems to be offloading the issue elsewhere, and is already accomplishable by using existing CSS variables:
```
--my-shade: inset 1px 1px 1px 1px rgba(0,0,0,0.2);
.element
{
box-shadow: var(--my-shade);
}
```
That's not what I'm after though... I'm proposing a way to (optionally!) disambiguate those `inset 1px 1px 1px 1px rgba(0,0,0,0.2)` strings altogether.
--
GitHub Notification of comment by proimage
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6519#issuecomment-900963627 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 18 August 2021 09:27:55 UTC