0

我正在做网站,我有如下图所示的下拉列表在此处输入图像描述

它工作正常,但是当我的浏览器尺寸减小时,该菜单会像下图一样下降在此处输入图像描述

这是我的CSS代码:

  nav ul ul {
display: none;
        }
  nav ul li:hover > ul {
    display: block;
}
nav ul {
background: #efefef; 
background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);  
background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); 
background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); 
box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
padding: 0 20px;
border-radius: 10px;  
list-style: none;
position: fixed;
display: inline-table;
overflow:hidden;
   }
  nav ul:after {
    content: ""; clear: both; display: block;

}
nav ul li {
float: left;

    }
nav ul li:hover {
    background: #4b545f;
    background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
    background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
    background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);
}
    nav ul li:hover a {
    color: #fff;
    }

 nav ul li a {
display: block; padding: 25px 40px;
color: #757575; text-decoration: none;
}
nav ul ul {
background: #5f6975; border-radius: 0px; padding: 0;
position: absolute; top: 100%;
   }

这是我的html代码:

![enter image description here][3]
4

1 回答 1

1

当屏幕分辨率变小时,您可以使用 CSS 媒体查询来隐藏菜单。将此添加到您的 CSS 代码中:

@media (max-width: 640px) {

nav {
    display:none;
}

}

对于移动用户,将此行<head>也添加到您的细分:

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
于 2012-12-07T12:22:45.713 回答