场景:
通过更改css索引的内容是可能的吗?
发布于 2018-12-18 11:37:00
再说一遍,RTFM!
panelClass: string | string[] Extra CSS classes to be added to the snack bar container.将此配置提供给您的snackbar (或覆盖您自己模块中的提供程序以将其应用于每个snackbar),并在给定类中设置z索引。
发布于 2021-08-18 09:45:04
他们都在为我工作。
::ng-deep .cdk-overlay-container {
z-index: 10000 !important;
}或
.cdk-overlay-container {
z-index: 99999999999999;
}或
:host /deep/ .cdk-overlay-pane{
z-index: 1000;
}https://stackoverflow.com/questions/53832108
复制相似问题