I have parent and child component. Moment when i use my html in another component i use my css.
I have for example in my parent component
HTML
<div class="chips">
<p class="tags">Tag 1</p>
</div>
CSS
.chips .tags {
color:red;
}
and everything works fine. But when i do this with another component
<div class="chips">
<app-child></app-child>
</div>
HTML FROM CHILD COMPONENT
<p class="tags">Tag 1</p>
then i don't get the red color.
How can i solve this ?