可能的最高 z 指数是多少?
我在规格中找不到这个。 我正在使用大量的第 3 方 javascript,并希望确保某些部分出现在其他所有内容之上。
I couldn't find that in the specs.
I am using lot of of 3rd party javascript and want to make sure that certain piece appears on top of everything else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 CSS 2.1 规范:
因此本规范不限制该范围。 我猜想 2^31 - 1 (带符号的 32 位整数)是大多数实现中的限制。
From the CSS 2.1 Specification:
So the specification does not limit the range. I guess that 2^31 - 1 (signed 32-bit integer) is the limit in most implementations.
对象的 zIndex 可以任意高(显然遵守signed int 限制)。 但是,如果您想检查页面上是否有任何其他对象高于您动态设置的对象,您可以检查 这个了。
The zIndex for an object can be as high as you want it to be(obviously obeying the signed int limit). But if you want to check if there is any other object on the page higher that what you will set dynamically, you can check this out.