Angular 2: How to style host element of the component?

前端 未结 6 2082
余生分开走
余生分开走 2020-11-28 01:54

I have component in Angular 2 called my-comp:


How does one style the host element of this component in Angu

6条回答
  •  眼角桃花
    2020-11-28 02:09

    For anyone looking to style child elements of a :host here is an example of how to use ::ng-deep

    :host::ng-deep

    e.g :host::ng-deep span { color: red; }

    As others said /deep/ is deprecated

提交回复
热议问题