I have component in Angular 2 called my-comp:
How does one style the host element of this component in Angu
For anyone looking to style child elements of a :host here is an example of how to use ::ng-deep
:host
::ng-deep
:host::ng-deep
e.g :host::ng-deep span { color: red; }
:host::ng-deep span { color: red; }
As others said /deep/ is deprecated
/deep/