当内容超出浏览器高度时,绝对定位的 div 不显示完整内容
所以,我现在的问题是我有一个带有溢出:隐藏和最小高度:100%的包装器div,以便它保持浏览器窗口的高度。
但是,当我的侧边栏上有大量内容(如链接图像所示)
如果我删除了溢出:从包装 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)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 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.
您可能想尝试这样的事情:
You might want to try something like this: