Is there a way to apply CSS from the Parent Component to style the child component in Angular 6? Please advise on how to approach this issue. How can we inherit the css styles from the Parent Component?
<parent>
<child>
<p>hello world</p>
</child>
</parent>
CSS from Parent component:
p { color: red;}