当内容超出浏览器高度时,绝对定位的 div 不显示完整内容

发布于 2024-10-17 22:05:27 字数 239 浏览 1 评论 0原文

所以,我现在的问题是我有一个带有溢出:隐藏和最小高度:100%的包装器div,以便它保持浏览器窗口的高度。

但是,当我的侧边栏上有大量内容(如链接图像所示)

http://d. pr/2jVn

如果我删除了溢出:从包装 div 中隐藏,那么它看起来就会很时髦。

我需要知道的是如何保持我的内容显示而不消失。

So, my issue right now is that I have a wrapper div with overflow: hidden and a min-height: 100% so that it stays the height of the browser window.

However, this causes issues when I have a huge population of content on the sidebar (shown in the linked image)

http://d.pr/2jVn

If I remove the overflow: hidden from the wrapper div then it'll just look funky.

What I need to know is how to keep my content displaying without it disappearing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

记忆之渊 2024-10-24 22:05:27

在您的 div 添加 max-height:100% 和 Overflow: auto 。我很确定这会起作用。但如果您提供一些代码对我们来说会更好。

Add max-height:100% and overflow: auto at your div. i am pretty sure this is going to work. But it would be better for us if you provided some code.

2024-10-24 22:05:27

您可能想尝试这样的事情:

#yourDiv {
    min-height:100%;
}

You might want to try something like this:

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