I want to style the child component from the CSS of Parent Component using Angular 6. Please suggest me a way to solve this problem. What we have to do take the css from the Parent component?
<parent>
<child>
<p>hello world</p>
</child>
</parent>
CSS from Parent component:
p { color: red;}