Re: [csswg-drafts] Syntax request: 'Property lists' (#7562)

I often find myself writing something along the lines of

```css
something-flex {
   --padding: 1em;
   padding: var(--padding);
   gap: var(--padding);
}

so there's one example where there isn't a convenient but obscure short-hand that could be used.

It would be a lot easier to write this as

```css
something-flex { padding, gap: 1em; }
```

or something similar to that.

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


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Tuesday, 14 March 2023 16:05:17 UTC