我在mat-sidenav-container上的滚动条和全屏属性出现问题。 这是我的代码(我的app-root):
<mat-sidenav-content class="main-content">
<mat-toolbar fxLayout="column">
.
.
.
</mat-toolbar>
<!-- The 'overflow-y: hidden;' is here because i had 2 scrollbars-->
<mat-sidenav-content style="overflow-y: hidden;">
<div>
<router-outlet>
</router-outlet>
</div>
</mat-sidenav-content>
</mat-sidenav-content>
在我的index.html中:
<head>
</head>
<body>
<app-root></app-root>
</body>
</html>
我的滚动条问题是:Not entire scrollbar
我没有整个滚动条,我也看不到页面的底部。 您是否有解决方案在mat-sidenav-content上获得具有全屏属性的正确滚动条。 TY。