Re: [csswg-drafts] [selectors] Selectors in ::slotted don’t affect specificity

Workaround
```
<style>
  /* ... */
  html ::slotted(main) 
  {
    background-color: blue;
  }
  ::slotted(*) 
  {
    background-color: red;
  }
</style>
<slot></slot>

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

Received on Monday, 5 February 2018 22:09:30 UTC