如果在焦点模式下,mat-input
没有背景颜色,可以通过以下方法解决:
.mat-input-element.mat-focused {
background-color: !important;
}
这将为焦点状态下的mat-input
元素添加背景颜色,并使用!important
来覆盖默认样式。
mat-input
元素添加样式:::ng-deep .mat-input-element.mat-focused {
background-color: ;
}
这将为特定组件的mat-input
元素添加背景颜色。
请将
替换为您想要的背景颜色值,例如#f0f0f0
或rgba(255, 0, 0, 0.5)
。