1 回答
0
在哪里可以找到mat-select课程?
要找到它们,您可以使用浏览器检查器或查看主 css 文件: https ://github.com/angular/components/blob/master/src/material/select/select.scss
全球范围内
如果您需要全局更新它,您可以根据您在style.css.
::ng-深
您可以使用::ng-deep (like ::ng-deep .mat-select-content) 来强制覆盖mat-select组件中的样式。
::ng-deep .mat-select-panel .mat-option {
padding: 10px;
}
视图封装
如果您想避免继承Angular Material 在组件中强加的样式,您可以使用ViewEncapsulation 。Nonemat-select
组件模板
import {ViewEncapsulation } from '@angular/core';
....
@Component({
....
encapsulation: ViewEncapsulation.None
})
组件样式
.mat-select-panel .mat-option {
padding: 10px;
}
于 2021-04-12T20:01:39.023 回答