- From: Peter Linss <notifications@github.com>
- Date: Mon, 05 Aug 2024 12:47:25 -0700
- To: w3ctag/design-reviews <design-reviews@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 5 August 2024 19:47:29 UTC
Your '.class-name' example isn't a regular class though, it's a `view-transition-class` (in which case I object to using the class syntax as it's confusing to authors, you're conflating the concept of class), what we're referring to is just using a regular class, or an Id, or any other kind of selector. e.g.: Instead of: ``` div.thing1, div.thing2 { view-transition-class: my-transition } ::view-transition-group(.my-transition) ``` just use: ``` ::view-transition-group(div.thing1, div.thing2) ``` -- Reply to this email directly or view it on GitHub: https://github.com/w3ctag/design-reviews/issues/938#issuecomment-2269791784 You are receiving this because you are subscribed to this thread. Message ID: <w3ctag/design-reviews/issues/938/2269791784@github.com>
Received on Monday, 5 August 2024 19:47:29 UTC