gpt4 book ai didi

angular - 如何在Angular Material 中为文本输入着色

转载 作者:行者123 更新时间:2023-12-03 15:08:39 28 4
gpt4 key购买 nike

这是我的用户表单:

enter image description here

我有一个问题,输入字段的颜色是白色的,背景也是白色的。
我找不到任何地方如何更改输入字段的颜色。

颜色 texte 的 css 属性是什么?

这是我的模板:

<div class="example-container" style="color:red">
<mat-form-field>
<input matInput placeholder="Input">
</mat-form-field>

<mat-form-field>
<textarea matInput placeholder="Textarea"></textarea>
</mat-form-field>

<mat-form-field>
<mat-select placeholder="Select">
<mat-option value="option">Option</mat-option>
</mat-select>
</mat-form-field>
</div>
new contact

最佳答案

Here is some most common properties of angular material v7

/* input color class */
::ng-deep input.mat-input-element {
color: #484a4c;
}

/* Change label color on focused */
::ng-deep .mat-form-field.mat-focused .mat-form-field-label {
color: #50d0fb !important;
}

/* underline border color on focused */
::ng-deep .mat-focused .mat-form-field-underline .mat-form-field-ripple{
background-color: #50d0fb !important;
}

关于angular - 如何在Angular Material 中为文本输入着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50604345/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com