为什么 Safari 似乎有 cssposition:fixed 问题?

发布于 2024-11-26 10:52:43 字数 196 浏览 1 评论 0原文

我正在这个网站上工作: 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 技术交流群。

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

发布评论

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

评论(1

始终不够 2024-12-03 10:52:43

您在一些元素上设置了 position:fixed,但尚未设置任何 topleftright ,或 bottom 告诉浏览器它们应该放置在哪里。如果您不指定位置,浏览器将自行猜测(在限制范围内)您的意思,并且不同的浏览器会猜测不同的内容。解决方案是向所有 position:fixed 元素添加 lefttop 属性。

You have position:fixed on a few elements but you haven't set any of top, left, right, or bottom 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 add left and top properties to all your position:fixed elements.

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