我正在使用mat-Input字段,在mat-input中输入文本后,我将移动到下一个表单控件,当我移动到下一个表单控件时,我想更改mat-input文本的颜色。mat-form-field(mat-input)
发布于 2019-04-03 14:27:39
在style.css文件中使用它。
.mat-focused input.mat-input-element{
color: rgb(188, 151, 86);
-webkit-text-fill-color: rgb(188,151,86) !important;
}
https://stackoverflow.com/questions/55468034
复制相似问题