I have a component with Native View Encapsulation
This means that every CSS rule use the shadow DOM to apply my rule only to the current component. But I have a component that every time I use it, I want to style tag. How can I combine Native View Encapsulation with global CSS rules?
encapsulation: ViewEncapsulation.Noneand still be able to style your component with global style ?styles.cssfile. personally i usescss @includes. write it once and import it wherever.