Re: [csswg-drafts] [css-cascade] Additive CSS (#1594)

You can consider the syntax with a plus sign "+" at the very end .
```CSS
button{
 transition: width 0.5s;
 transition: box-shadow 0.5s +;
 transition: background-color 1s +;
}
```

Optionally, you can consider specifying the order of the member after the plus sign "+" 
```CSS
button{
 transition: width 0.5s;
 transition: background-color 1s +2;
 transition: box-shadow 0.5s +1;
}
```
This is the equivalent of
```CSS
button{
 transition: width 0.5s, box-shadow 0.5s, background-color 1s;
}
```

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


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

Received on Friday, 12 August 2022 06:27:25 UTC