作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的用户表单:
我有一个问题,输入字段的颜色是白色的,背景也是白色的。
我找不到任何地方如何更改输入字段的颜色。
颜色 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/
我是一名优秀的程序员,十分优秀!