Is there an official list maintained, with up to date details on the CSS Properties which penetrate the Shadow Root
of a WebComponent
?
I gather that the following:
color
line-height
font-family
font-size
font-weight
all do, but there must be at least a dozen more, are there?
` inside the _shadow-root_ and a global stylesheet declares: `p {color: red;}` then that `
` _won't_ be `red`. But if the same global stylesheet declares: `body {color: red;}` then it will.
– Rounin Sep 30 '20 at 12:47