[csswg-drafts] [css-conditional-4] @supports shorthand (#7022)

NagayamaToshiaki has just created a new issue for https://github.com/w3c/csswg-drafts:

== [css-conditional-4] @supports shorthand ==
* please be specific (in the title and issue) about what you want to change:
  If you want to see if the property name is supported, current implementation of `@supports` is redundant.

```
@supports(some-new-feature: value) {
    .foo {
        some-new-feature: value;
    }
}
```

Instead, I would like to write it as:

```
@supports(some-new-feature) {
    .foo {
        some-new-feature: value;
    }
}
```

https://www.w3.org/TR/css-conditional-3/#at-supports

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7022 using your GitHub account


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

Received on Tuesday, 8 February 2022 02:39:33 UTC