CSS 溢出扩展奇怪
使用CSS我们有一个带有overflow:auto的面板。由于某种未知的原因,包含滚动元素的面板几乎是应有的两倍大。面板使用 ajax 加载更多内容,无论可滚动 div 需要多大,它的大小都会加倍。
Using CSS we have a panel with overflow:auto. For some unknown reason the panel that contains the scrolling elements is nearly twice as big as it should be. The panel uses ajax to load in more content and no matter how big the scrollable div needs to be it doubles in size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是由于
#coursepack .dircore a .tit
的height
为100%
造成的。删除这个高度可以解决您的问题。
这是一个工作示例。
This is being caused by
#coursepack .dircore a .tit
having aheight
of100%
.Removing this height solves your problem.
Here's a Working Example.