- From: Guillaume via GitHub <sysbot+gh@w3.org>
- Date: Fri, 10 Feb 2023 17:10:40 +0000
- To: public-css-archive@w3.org
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