Re: [w3c/webcomponents] Style ::slotted children (#594)

Hey, does anyone know how to do a child selector with `::slotted`? For example I want to only select the cels of the last row in THIS grid, not nested ones:

```css
:host(:last-of-type) ::slotted(fyg-body-cell) {
```

But I want to do:

```css
:host(:last-of-type) ::slotted(> fyg-body-cell) {
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/594#issuecomment-683297073

Received on Saturday, 29 August 2020 14:19:58 UTC