Angular - Sidenav 内容没有滚动条
我在我的 Angular 应用程序中使用 sidenav 并将 router-outlet
设置为我的 sidenav-content
,这样做我的 中没有滚动条>sidenav-content
即使我有溢出 Y 轴的组件。
我仍然可以滚动页面,一切都很好,只是我觉得没有滚动条很烦人。
我可以做什么来解决这个问题?
app.component.html
<mat-sidenav-container autosize class="h-100">
<mat-sidenav #sidenav mode="side" opened="true">
<mat-nav-list>
...
</mat-nav-list>
<mat-sidenav-content>
<router-outlet></router-outlet>
</mat-sidenav-content>
</mat-sidenav-container>
I'm using a sidenav in my Angular app and set the router-outlet
as my sidenav-content
, doing it this way I dont have a scroll bar in the sidenav-content
even though I have components that overflow the Y axis.
I'm still able to scroll the page and eveything is fine, I just find annoying that I don't have a scroll bar.
What could I do to fix this?
app.component.html
<mat-sidenav-container autosize class="h-100">
<mat-sidenav #sidenav mode="side" opened="true">
<mat-nav-list>
...
</mat-nav-list>
<mat-sidenav-content>
<router-outlet></router-outlet>
</mat-sidenav-content>
</mat-sidenav-container>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将您的路由器插座放入 div 中,然后
在你的CSS上:
try putting your router-outlet inside a div, then
on your css:
如果整个页面都在滚动,而您只想侧导航内容可滚动,则可以尝试将容器的溢出设置为隐藏,并将仅侧导航内容的溢出设置为自动
if the entire page is scrolling when you just wanted the sidenav content to be scrollable you can try setting the overflow of the container hidden and set the overflow of only the sidenav content to auto