如何更改此文本2020“通过mat-option选定”的颜色 这是图片here,我的代码是
<mat-form-field appearance="fill" style="width: 100px;">
<mat-label>Year</mat-label>
<mat-select formControlName="year">
<mat-option [value]="2020">
2020
</mat-option>
<mat-option [value]="2021">
2021
</mat-option>
</mat-select>
答案 0 :(得分:0)
在您的CSS-
中::ng-deep .mat-select-value
{
color: green!important;
}
这是您要寻找的吗?