Skip to content
Advertisement

How to inherit css styles in child component from parent in Angular 5

I have a parent component inside which I have a child component. The parent component have some css classes, where child component extends them. I tried to use :host as looking at documentation, but cant’t seem to get it work properly.

child component:

JavaScript

parent component:

JavaScript

parent component css:

JavaScript

The problem if even I put css classes inside the child component, the layout breaks just because there is a child-component template. So the main question is what is proper way for child to inherit extend css from parent component?

Advertisement

Answer

Why make things complex?

Ideal way to do would be to add refrence of parent css file in child component as well.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement