CSS Shadow Parts

Styling the Shadow DOM!

/* access the shadow part */
my-element::part(header) { ... }

/* chainable pseudo elements/selectors */
my-element::part(header):hover { ... }
my-element::part(header):placeholder { ... }

This will not replace the CSS Custom Properties approach, the idea is to have more choices.