作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试将 MatSnackbar
模块放置在我的页面顶部。
我尝试使用config
添加customclass
。这是我的代码:
component.ts
let config = new MatSnackBarConfig();
config.duration = 50000;
config.panelClass = ['red-snackbar']
this.snackBar.open("Please fill all the details before proceeding.", null, config);
.css
.red-snackbar{
position: absolute !important;
top: 54px;
}
但它不起作用。是否可以重新定位 MatSnackbar?
最佳答案
您可以确定由 docs 指定的 verticalPosition: MatSnackBarVerticalPosition
:
openSnackBar(message: string, action: string) {
this.snackBar.open(message, action, {
duration: 2000,
// here specify the position
verticalPosition: 'top'
});
}
关于angular - 如何在 Angular 中定位 Position MatSnackBar 模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51937261/
我是一名优秀的程序员,十分优秀!