Div无法正确显示为导航的子菜单

时间:2018-12-07 06:18:33

标签: html css html5 css3

现在,在全屏情况下,导航不会像本例中那样显示,但是在chrome上的iPad模式下会正确显示,因此对我来说这是可行的。

我完全制作了一个子菜单,该子菜单以前从顶部导航弹出,但是出于某种原因,我却很沮丧。

首先,我想的很好!您需要更改hoverableMenu{position:absolute};

hoverable{position:relative};

我会做中提琴。但是,无论我做什么,当我有了float:left;时,它都会一直移到最左边,即使我想我也可以使用边距对位置进行硬编码,但这并不是一个很好的解决方案,而且我很诚实地知道只是飞过我头上的东西。

任何帮助都将受到赞赏。

下面是我的最小可验证示例。

function myFunction() {
    var x = document.getElementById("myTopnav");
    if (x.className === "topnav") {
        x.className += " responsive";
    } else {
        x.className = "topnav";
    }
}
body{
margin: 0px;
background-color: lightblue;
height: 100%;
}
header{
    /*This is for the header picture background*/
    background-size: 100%;
    background-image: url(resources/chem3D.png);
    background-repeat: no-repeat;
    /* vh = viewheight. Used in place of percentages when percentages don't seem to work. This is basically 30% but not really
    https://stackoverflow.com/questions/31039979/css-units-what-is-the-difference-between-vh-vw-and */
    min-height: 100%; 
}
/*Seperate the header from the content*/
#seperator{
    height: 10px;
    background-color: black;
    margin:0;
    padding:0;
}

/*THe main content of the site. Where the Flex magic happens.*/
#content{
    display: flex;
    margin: auto;
    height: auto;
}

/*Navigation Stuffs*/
nav{
    width: 200px;
}


.topnav{
    overflow: hidden;
}


/*style of links in nav*/
/* ADDED FLOAT LEFT */
.topnav a{
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 10px 5px 10px 15px;
    text-decoration: none;
    font-size: 1.2em;
    letter-spacing: 0.1em;
}

/* Drop down menu */
a.hoverable:focus + div.hoverableMenu{
display: block;
float: left;
}

a.hoverable:hover{
    color:black;
}
div.hoverableMenu{
    display: none;
    width: 70%;
    margin-left:auto;
    margin-right:10px;
}

div.hoverableMenu>a{
    letter-spacing: 0em;
}
div.hoverableMenu:focus{
    display: block;
}

/*Mobile views*/
 /*Tablet View*/
 @media screen and (max-width: 900px){
#seperator{
    display: none;
}
#content{
    height: 100%;
    display:flex;
    flex-wrap: wrap;
}

nav{
    width: 100%;
    flex-basis: 100%;
}
.topnav a{
    float: left;
}

main{
    width: 50%;
}

header{
    display:none;
}
}
<div id="seperator"></div>
<div id="content">
    <nav>
        <div class="topnav" id="myTopnav">

            <a href="index.html">Home</a>
            <a href="teaching.html">Teaching</a>

            <a class="hoverable" href="#">Research <i class="fa fa-caret-down"></i></a>
            <div class="hoverableMenu">
                <a href="research.html">Overview</a>
                <a href="publications.html">Publications</a>
            </div>

            <a class="hoverable" href="#">Students <i class="fa fa-caret-down"></i></a>
            <div class="hoverableMenu">
                <a href="studentawards.html">Awards</a>
                <a href="gallery.html">Gallery</a>
            </div>
            <a href="contact.html">Contact</a>
            <a href="javascript:void(0);" class="icon" onclick="myFunction()">
                <i class="fa fa-bars"></i>
            </a>
        </div>
    </nav>
</div>

JSFiddle

我访问的

资源:
https://jsfiddle.net/davidpauljunior/pdcAF/1/
How to make sub menu float over div?
Can't click on menu links in drop down menu

编辑 在我的媒体查询下,我更改以下内容。

div.hoverable{
    display: relative;
}

div.hoverableMenu{
    float:right;
    display: absolute;
}

div.hoverable:focus > div.hoverableMenu{
    top:1em;
    left: 140px;
    z-index: 99;
}

执行完此操作后,相对于其父菜单现在会弹出菜单,但是这些菜单使它们右边的元素环绕到中殿其余部分的下方。而不是子菜单浮动在导航栏上。 :(

2 个答案:

答案 0 :(得分:1)

您必须将结构稍微更改为ul li,签出下面的代码

            function myFunction() {
                var x = document.getElementById("myTopnav");
                if (x.className === "topnav") {
                    x.className += " responsive";
                } else {
                    x.className = "topnav";
                }
            }
body{
    margin: 0px;
    background-color: lightblue;
    height: 100%;
    }
    header{
        /*This is for the header picture background*/
        background-size: 100%;
        background-image: url(resources/chem3D.png);
        background-repeat: no-repeat;
        /* vh = viewheight. Used in place of percentages when percentages don't seem to work. This is basically 30% but not really
        https://stackoverflow.com/questions/31039979/css-units-what-is-the-difference-between-vh-vw-and */
        min-height: 100%; 
    }
    /*Seperate the header from the content*/
    #seperator{
        height: 10px;
        background-color: black;
        margin:0;
        padding:0;
    }

    /*THe main content of the site. Where the Flex magic happens.*/
    #content{
        display: flex;
        margin: auto;
        height: auto;
    }

    /*Navigation Stuffs*/
    nav{
        width: 200px;
    }


    .topnav{
        overflow: hidden;
    }


    /*style of links in nav*/
    /* ADDED FLOAT LEFT */
    .topnav a{
        float: left;
        display: block;
        color: black;
        text-align: center;
        padding: 10px 5px 10px 15px;
        text-decoration: none;
        font-size: 1.2em;
        letter-spacing: 0.1em;
    }

    /* Drop down menu */
    a.hoverable:focus + div.hoverableMenu{
    display: block;
    float: left;
    }

    a.hoverable:hover{
        color:black;
    }
    div.hoverableMenu{
        display: none;
        width: 70%;
        margin-left:auto;
        margin-right:10px;
    }

    div.hoverableMenu>a{
        letter-spacing: 0em;
    }
    div.hoverableMenu:focus{
        display: block;
    }
    
    


/*//////////*/

.topnav{
  overflow: visible;
}
.topnav > li {
    float: left;
    list-style-type: none;
}

.topnav li {
    list-style-type: none;
    padding: 0;
    position: relative;
}

.topnav > li > ul {
    display: none;
    margin: 0;
    position: absolute;
    left: 0;
    padding: 0;
    top: 40px;
}

.topnav > li:hover > ul {
    display: block;
}

.topnav li {
}

.topnav:after {
    content: "";
    display: table;
    clear: both;
}


/*//////////*/



    /*Mobile views*/
/*Tablet View*/
@media screen and (max-width: 900px){
    #seperator{
        display: none;
    }
    #content{
        height: 100%;
        display:flex;
        flex-wrap: wrap;
    }

    nav{
        width: 100%;
        flex-basis: 100%;
    }
    .topnav a{
        float: left;
    }

    main{
        width: 50%;
    }

    header{
        display:none;
    }
}	
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <header>
    </header>
    <div id="seperator"></div>
    <div id="content">
        <nav>
            
            <ul class="topnav" id="myTopnav">
                <li><a href="index.html">Home</a></li>
                <li><a href="teaching.html">Teaching</a></li>
                
                <li><a class="hoverable" href="#">Research <i class="fa fa-caret-down"></i></a>

<ul class="hoverableMenu" style="
">
                    <li><a href="research.html">Overview</a></li>
                    <li><a href="publications.html">Publications</a></li>
                </ul>
</li>
                
                
                <li><a class="hoverable" href="#">Students <i class="fa fa-caret-down"></i></a>

<ul class="hoverableMenu">
                    <li><a href="studentawards.html">Awards</a></li>
                    <li><a href="gallery.html">Gallery</a></li>
                </ul>

</li>
                
                <li><a href="contact.html">Contact</a></li>
                <li><a href="javascript:void(0);" class="icon" onclick="myFunction()">
                    <i class="fa fa-bars"></i>
                </a></li>
            </ul>
            
            
        </nav>
        <main>
        </main>
        <footer>
        </footer>
    </div>
</body>
</html>

答案 1 :(得分:0)

更改一些CSS

function myFunction() {
                var x = document.getElementById("myTopnav");
                if (x.className === "topnav") {
                    x.className += " responsive";
                } else {
                    x.className = "topnav";
                }
            }
body{
    margin: 0px;
    background-color: lightblue;
    height: 100%;
    }
    header{
        /*This is for the header picture background*/
        background-size: 100%;
        background-image: url(resources/chem3D.png);
        background-repeat: no-repeat;
        /* vh = viewheight. Used in place of percentages when percentages don't seem to work. This is basically 30% but not really
        https://stackoverflow.com/questions/31039979/css-units-what-is-the-difference-between-vh-vw-and */
        min-height: 100%; 
    }
    /*Seperate the header from the content*/
    #seperator{
        height: 10px;
        background-color: black;
        margin:0;
        padding:0;
    }

    /*THe main content of the site. Where the Flex magic happens.*/
    #content{
        display: flex;
        margin: auto;
        height: auto;
    }

    /*Navigation Stuffs*/
    nav{
        width: 200px;
    }


    .topnav{
        overflow: hidden;
    }


    /*style of links in nav*/
    /* ADDED FLOAT LEFT */
    .topnav a{
        float: left;
        display: block;
        color: black;
        text-align: center;
        padding: 10px 5px 10px 15px;
        text-decoration: none;
        font-size: 1.2em;
        letter-spacing: 0.1em;
    }

    /* Drop down menu */
    a.hoverable:focus + div.hoverableMenu{
    display: block;
    float: left;
    }

    a.hoverable:hover{
        color:black;
    }
    div.hoverableMenu{
        display: none;
        width: 70%;
        margin-left:auto;
        margin-right:10px;
    }

    div.hoverableMenu>a{
        letter-spacing: 0em;
    }
    div.hoverableMenu:focus{
        display: block;
    }
    
    


/*//////////*/

.topnav{
  overflow: visible;
}
.topnav > li {
    float: left;
    list-style-type: none;
}

.topnav li {
    list-style-type: none;
    padding: 0;
    position: relative;
}

.topnav > li > ul {
    display: none;
    margin: 0;
    position: absolute;
    left: 100%;
    padding: 0;
    top: 0px;
}

.topnav > li:hover > ul {
    display: block;
}

.topnav li {
}

.topnav:after {
    content: "";
    display: table;
    clear: both;
}


/*//////////*/



    /*Mobile views*/
/*Tablet View*/
@media screen and (max-width: 900px){
    #seperator{
        display: none;
    }
    #content{
        height: 100%;
        display:flex;
        flex-wrap: wrap;
    }

    nav{
        width: 100%;
        flex-basis: 100%;
    }
    .topnav a{
        float: left;
    }
.topnav > li > ul {
   
    left: 0%;
    padding: 0;
    top: 40px;
}
    main{
        width: 50%;
    }

    header{
        display:none;
    }
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <header>
    </header>
    <div id="seperator"></div>
    <div id="content">
        <nav>
            
            <ul class="topnav" id="myTopnav">
                <li><a href="index.html">Home</a></li>
                <li><a href="teaching.html">Teaching</a></li>
                
                <li><a class="hoverable" href="#">Research <i class="fa fa-caret-down"></i></a>

<ul class="hoverableMenu" style="
">
                    <li><a href="research.html">Overview</a></li>
                    <li><a href="publications.html">Publications</a></li>
                </ul>
</li>
                
                
                <li><a class="hoverable" href="#">Students <i class="fa fa-caret-down"></i></a>

<ul class="hoverableMenu">
                    <li><a href="studentawards.html">Awards</a></li>
                    <li><a href="gallery.html">Gallery</a></li>
                </ul>

</li>
                
                <li><a href="contact.html">Contact</a></li>
                <li><a href="javascript:void(0);" class="icon" onclick="myFunction()">
                    <i class="fa fa-bars"></i>
                </a></li>
            </ul>
            
            
        </nav>
        <main>
        </main>
        <footer>
        </footer>
    </div>
</body>
</html>