如何通过另一个div进行div点击? (导航栏)

时间:2017-01-26 00:18:23

标签: html click

网站:www.vocabularybuilder.co

我希望徽标和导航可以点击,它曾经工作,但我做了一些事情,现在它没有:/

2 个答案:

答案 0 :(得分:1)

为此类添加z-index:1和position:relative。

.site-header__logo {
    text-align: center;
    margin: auto !important;
    max-width: 400px;
    font-size: 1.85714em;
    top: 0;
    height: 90px;
    display: table;
    z-index: 1;
    position: relative;
}

答案 1 :(得分:0)

尝试将此添加到您的css:

.nav-bar {
    pointer-events:none;
}
// for the 2 links
li a {
    pointer-events: auto;
}

希望它能奏效。这已经在Click through a DIV to underlying elements回答了。 ctto