Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在另一个之上显示一个图像并且需要使用:
z-index: 9999
我会认为z-index: 999这已经足够了,因为没有 998 个元素相互叠加。我没有粘贴更多代码,因为它不是我的和私有的。
z-index: 999
即使当前只有大约 5 张图像相互叠加,为什么我需要将 z-index 设置得如此之高?
实际上,如果 恰好是 9999 并不重要z-index,它只需要高于任何其他定义的 z 索引,因此选择像 9999 这样的高数字更安全。
z-index
通常 z-index 被赋予任意“足够高”的数字以合理地确定元素将真正位于顶部。它不必这么高,9999 只是确保是否存在 z-index 9998、3000、100 等的机会元素。(低于 9999 的任何值) - 它将高于它。