Styling not applying to child component

前端 未结 3 1982
自闭症患者
自闭症患者 2020-12-15 03:53

I\'m trying to apply styling to a child component tag, but I can\'t do that.

I have child component with anchor tag.

Even though i have styling for anchor

3条回答
  •  爱一瞬间的悲伤
    2020-12-15 04:17

    EDITED: This should solve:

    In the css of child class write below code

    :host.parentclass childclass{
    
    }
    

    The parentclass is immediate parent of child. childclass is the class applied to child component.

提交回复
热议问题