Re: [csswg-drafts] [css-animations-1] Restrict `none` in `animation` and `animation-name` (#8440)

Actually, there is a use case for `none` with other values:

```css
div {
  animation: 1s move, 1s;
}
div:hover {
  animation: move, rotate;
}
```

A remaining problem is `none` not allowed to repeat in `transition-property` though.

```css
div {
  transition-property: transform, none;
  transition-duration: 1s, 2s;
}
div:hover {
  transition-property: transform, opacity;
}
```

I guess there are similar cases for `scroll-timeline` and `view-timeline`.

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


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

Received on Friday, 10 February 2023 17:10:42 UTC