Re: [csswg-drafts] Mixing :is() (or equivalent) with pseudo-elements (#9702)

Yes, we need this feature.

For example, if you want to set the input track for both browsers at the same time, you need to write the same rule set twice, and it won't work in `:is()`.

```css
input[type=range]:is(
    ::-moz-range-track,
    ::-webkit-slider-runnable-track
) {
    background: #ddd;
}
```

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


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

Received on Wednesday, 10 January 2024 03:47:54 UTC