3

我可以更改标签的浮动默认紫色吗?

 <mat-form-field>
 <input matInput placeholder="My Lable" formControlName="my-Lable">
</mat-form-field>
4

2 回答 2

3

我更<mat-label></mat-label>喜欢*placeholder*

<mat-form-field>
<mat-label>Agent Code</mat-label>
<input matInput>
</mat-form-field>

然后你只需在 css 中调用它

mat-label {
  color: blue;
}
于 2019-01-23T02:06:21.930 回答
2

材质主题的用户颜色属性:color="primary" 或 "accent" 或 "warn",对于额外的颜色,您可以使用自定义主题,或覆盖 css 文件中的颜色。

 <mat-form-field color="accent"> <------here
   <input matInput placeholder="My Lable" formControlName="my-Lable">
 </mat-form-field>
于 2018-12-26T08:50:25.443 回答