为什么 Safari 似乎有 cssposition:fixed 问题?
我正在这个网站上工作: http://www.mywebclass.org/~jeff/ 。 ui 的很大一部分是使用position:fixed; 构建的。在除 Safari 之外的所有浏览器中,它都呈现良好。但在 Safari 中,一切都变得一团糟。有什么办法可以解决这个问题吗?
I am working on this site: http://www.mywebclass.org/~jeff/ . A large percent of the ui is built with position:fixed;. In all the browsers except Safari it renders fine. But in Safari it is all messed up. Is there any way to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在一些元素上设置了
position:fixed
,但尚未设置任何top
、left
、right
,或bottom
告诉浏览器它们应该放置在哪里。如果您不指定位置,浏览器将自行猜测(在限制范围内)您的意思,并且不同的浏览器会猜测不同的内容。解决方案是向所有position:fixed
元素添加left
和top
属性。You have
position:fixed
on a few elements but you haven't set any oftop
,left
,right
, orbottom
to tell the browser where they should be positioned. The browser will be left to guess (within limits) what you mean if you don't specify the position and different browsers will guess different things. The solution is to addleft
andtop
properties to all yourposition:fixed
elements.