网站的响应式菜单显示子菜单

时间:2014-10-20 12:50:05

标签: css

我正在this网站上工作,即使网页没有打开,该网站也显示菜单中的子菜单。我无法理解导致此问题的原因。

请指导我。感谢。

注意:菜单显示所有菜单项(菜单项及其子菜单项,直到我将鼠标悬停在菜单项上时才会显示。) enter image description here

body #navmenu ul.menu li {
/*
    width: 100%;
*/
    width: 60%;

    clear: both;
    float: none;
    text-align: center;
    padding-top: 6px;
    padding-right: 30px;
    padding-bottom: 6px;
    padding-left: 0px;
    /*
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    */
}
body #navmenu ul > li:hover {
    background: #051449 !important;
}
body #navmenu ul.menu li ul li {
    background:#051449!important;
    width: 100%;
    border: none;
}
body #navmenu ul.menu li ul li:hover {
    background:#051449!important;
}
body #navmenu ul.menu a, body #topmenu ul.menu ul a {
    background: #051449!important;
    display: inline;
    padding: 0;
    border: none;
}
body #navmenu ul.menu a:hover, body #topmenu ul.menu ul a:hover {
    background: #051449!important;
}
/* dropdown */
body #navmenu ul.menu ul {
    width: auto;
    position: static;
    display: block;
    border: none;
    background: inherit;
    margin-top: 0px;
}
body #navmenu ul.menu ul li {
}

0 个答案:

没有答案