Re: [csswg-drafts] [css-values] A more structured format for complex CSS values? (#6519)

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