"styles": [ "src/styles.css" ]
@Component({ selector: 'app-my-component', templateUrl: './my-component.component.html', styleUrls: ['./my-component.component.css'], encapsulation: ViewEncapsulation.None })
:host { color: red; }
:host /deep/ .my-class { background-color: blue; }
记住,在使用/deep/修饰符时,需要将它包含在样式标签的开头,例如: