为组件内的元素添加"::ng-deep
"前缀以覆盖全局Angular Material样式。
示例代码:
styles.scss:
mat-radio-button ::ng-deep .mat-radio-label-content {
color: red;
}
app.component.html:
Option 1
Option 2
在上述示例中,我们添加了一个::ng-deep
前缀,用于在组件内访问mat-radio-button
元素的.mat-radio-label-content
元素。由于全局Angular Material样式不应用于内部元素,因此我们需要使用::ng-deep
前缀来强制使用指定的样式。