gpt4 book ai didi

css - 下拉菜单与较低的 div 重叠

转载 作者:行者123 更新时间:2023-11-28 07:44:14 25 4
gpt4 key购买 nike

问题可以在我的测试站点上找到:http://udkcf.geekgirlcoding.com/

我创建了一个下拉菜单(顶部的灰色框)。当我展开菜单时,菜单项被品牌 div 或站点内容重叠。我尝试设置/更改 z-index 值,但没有成功。

最佳答案

'z-index'
...
For a positioned box, the 'z-index' property specifies:

The stack level of the box in the current stacking context. Whether the box establishes a stacking context. Values have the following meanings:

  • <integer>
    This integer is the stack level of the generated box in the current stacking context. The box also establishes a new stacking context.
  • auto
    The stack level of the generated box in the current stacking context is 0. The box does not establish a new stacking context unless it is the root element.

http://www.w3.org/TR/CSS2/visuren.html#propdef-z-index

所有周围元素的 z-index 都是 0,这意味着它们没有定义新的堆叠顺序,而是按照它们出现的顺序堆叠.

因此,您可以简单地应用 1z-index 来将有问题的元素从自然堆叠顺序中取出。

这将告诉浏览器您希望该元素位于所有其他元素之上

  • 除非有任何以下元素具有相同的z-index
  • 有任何元素,可能出现在之前或之后,具有更高 z-index 值。
.dl-menuwrapper {
z-index: 1;
}

screenshot of solution

关于css - 下拉菜单与较低的 div 重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30795267/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com