gpt4 book ai didi

css - Sidenav Z-Index 窗口变暗

转载 作者:行者123 更新时间:2023-11-28 06:15:58 26 4
gpt4 key购买 nike

我正在使用 materializecss,我不得不将 z-index 放入 navbar 类中,因为导航栏隐藏在我的全屏 slider 下方。现在一切正常,但是当我想点击我的侧边栏时,我遇到了这个问题:

sidebar, dimmed window

整个窗口变暗,我无法点击任何地方。我想我做错了那个 z-index

这是我的 CSS 代码:

.slider {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
#nav{
z-index: 10;
position: relative;
}
.sideNav {
z-index: 11;
}

我该如何解决这个问题?

最佳答案

发生这种情况是因为您在 #nav 中使用 position:relativeposition:relative.sideNav 还有

.slider {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
#nav{
z-index: 10;
position: relative;
}
.sideNav {
z-index: 11;
position: relative;
}

关于css - Sidenav Z-Index 窗口变暗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35889504/

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