网站:www.vocabularybuilder.co
我希望徽标和导航可以点击,它曾经工作,但我做了一些事情,现在它没有:/
答案 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