所有浏览器上的 CSS 位置错误和溢出
我设置了一个可滚动的 div
,直到最近它还在滚动,现在似乎卡在了顶部。唯一的区别是添加了 position:relative;
。
这是一个 FIDDLE
有什么想法吗?
I have set up a scrollable div
that until recently was scrolling and now appears to be jammed at the top. The only difference is the addition of position: relative;
.
Here is a FIDDLE
Any ideas why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 z-index 更改为正值。
Change z-index to a positive value.
z-index:-1;
是问题所在。http://jsfiddle.net/PMzcB/13/
The
z-index:-1;
was the problem.http://jsfiddle.net/PMzcB/13/