Can Shadow DOM elements inherit CSS?
Note: the substance of the answer below is no longer relevant, as the features discussed have been deprecated for some time. Don't use the sample code, but feel free to take a peek into the Internet past.
In a complete Shadow DOM implementation, CSS has a
::shadow
pseudo-class, and also the /deep/
combinator.
The ::shadow
pseudo-class lets you break into the shadow DOM under an element, and it matches the shadow root. The /deep/
combinator effectively opens up the shadow DOM completely.
Thus, if you had a <x-foo>
element with <span>
elements inside, you could make them red with
x-foo::shadow span { color: red; }
Or make all <spans>
in any shadow DOM red:
body /deep/ span { color: red; }
Whatever hacks were necessary in the past, the current state of the shadow dom / CSS is that you can link to external stylesheets. More info at MDN: https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM#Internal_versus_external_styles
You could, then, have some sort of utility stylesheet (Tailwind or similar) that all of your components reference, so you don't duplicate CSS. In theory, that CSS file would get downloaded once, cached, and then the custom elements would each be able to use the classes in it (as long as they each link to it).