Angular - Sidenav 内容没有滚动条

发布于 2025-01-10 17:33:22 字数 679 浏览 0 评论 0原文

我在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岛歌少女 2025-01-17 17:33:22

尝试将您的路由器插座放入 div 中,然后
在你的CSS上:

.sampleDivClass {
  overflow-y auto
}
``

try putting your router-outlet inside a div, then
on your css:

.sampleDivClass {
  overflow-y auto
}
``
清君侧 2025-01-17 17:33:22

如果整个页面都在滚动,而您只想侧导航内容可滚动,则可以尝试将容器的溢出设置为隐藏,并将仅侧导航内容的溢出设置为自动

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文