我在我的项目中使用 Angular Material 8.2.3,我正在尝试更改 Mat-Select 组件(即下拉菜单)的选定值颜色,如下所示。
在 chrome 检查器中,我可以看到字体颜色由类 .mat-select-value 定义
但是,当我尝试使用类选择器更改颜色时,什么也没有发生。
有没有办法改变选定的值颜色?我在页面上有其他菜单下拉菜单,所以它必须限制在这个组件中。提前谢谢了。
我的代码如下。
HTML
<mat-select class="custom-color" [(ngModel)]="value">
<mat-option>
Yes
</mat-option>
<mat-option>
No
</mat-option>
</mat-select>
CSS
尝试1:
.custom-color.mat-select-value{
color: green !important;
}
尝试2:
.custom-color > .mat-select-value{
color: green !important;
}