可能的最高 z 指数是多少?

发布于 2024-07-15 09:01:56 字数 66 浏览 4 评论 0原文

我在规格中找不到这个。 我正在使用大量的第 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 技术交流群。

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

发布评论

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

评论(2

带刺的爱情 2024-07-22 09:01:56

来自 CSS 2.1 规范

4.3.1 整数和实数

某些值类型可能有整数
值(用 表示)或实数
数值(用 表示)。
实数和整数是
仅以十进制表示法指定。 一个
由一个或多个组成
数字“0”到“9”。 一个罐头
要么是一个,要么它可以是
零个或多个数字后跟一个点
(.) 后跟一位或多位数字。
整数和实数都可以是
前面加“-”或“+”表示
标志。 -0 相当于 0 并且是
不是负数。

请注意,许多属性允许
整数或实数作为值
实际上将值限制为某些
范围,通常为非负值。

因此本规范不限制该范围。 我猜想 2^31 - 1 (带符号的 32 位整数)是大多数实现中的限制。

From the CSS 2.1 Specification:

4.3.1 Integers and real numbers

Some value types may have integer
values (denoted by ) or real
number values (denoted by ).
Real numbers and integers are
specified in decimal notation only. An
consists of one or more
digits "0" to "9". A can
either be an , or it can be
zero or more digits followed by a dot
(.) followed by one or more digits.
Both integers and real numbers may be
preceded by a "-" or "+" to indicate
the sign. -0 is equivalent to 0 and is
not a negative number.

Note that many properties that allow
an integer or real number as a value
actually restrict the value to some
range, often to a non-negative value.

So the specification does not limit the range. I guess that 2^31 - 1 (signed 32-bit integer) is the limit in most implementations.

香草可樂 2024-07-22 09:01:56

对象的 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.

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