背景颜色涵盖下拉菜单背景颜色

时间:2018-08-24 16:02:48

标签: html css responsive-design background-color nav

example

正如标题所述,我遇到了麻烦。 左图是bg-color上没有#landing-wrap,右图是bg-color上是#landing-wrap

这是我的下拉菜单CSS代码:

nav ul li a{
    text-decoration: none;
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #293133;
    display: block;
    background: #404040;
    color: #fff;
}

这是我的导航菜单下的div:

#landing-wrap {
    background: #00AFAA;
    height: 600px;
}

1 个答案:

答案 0 :(得分:0)

您可以尝试以下方法:

#landing-wrap {
background: #00AFAA;
height: 600px;
z-index: -1;
}

希望它会吓跑。