当窗口调整大小时,HTML / CSS href不起作用

时间:2014-05-03 17:40:41

标签: html css hyperlink responsive-design html-lists

大家可以帮我解决这个响应式导航问题,当我调整浏览器窗口大小说50%时,链接就在那里但不会点击。在浏览器的左下角,链接显示但没有点击事件。尝试使用不同的浏览器和相同的问题。

这是HTML:

<ul>
 <li><a href="index.php">Home</a></li>      
 <li><a href="drop.php">Drop</a>
<ul class="hidden">
    <li><a href="index.php">A</a></li>
    <li><a href="#">B</a></li>
    <li><a href="#">C</a></li>
    <li><a href="#">D</a></li>
</ul></li>  
</ul> 

这是CSS:

ul {
    left: 30%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
}
li {
    display: inline-block;
    float: left;
    margin-right: 1px;
}
li a {
    display: block;
    min-width: 140px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
    border: 2px solid #0072C6;
    background-color: #000;
}
li:hover a {
    background: #0072C6;
}
li:hover ul a {
    background: #f3f3f3;
    border: none;
    color: #000000;
    height: 30px;
    font-weight: 300;
    line-height: 30px;
}
li:hover ul a:hover {
    border: 4px solid #f3f3f3;
    padding: 4px;
    background: #0072C6;
    color: #fff;
}
li ul {
    display: none;
}
li ul li {
    display: block;
    float: none;
}
li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
}
ul li a:hover + .hidden, .hidden:hover {
    display: block;
}
a.clickable {
    text-decoration: none;
    color: #fff;
    background: #0072C6;
    text-align: center;
    padding: 10px 0;
    display: none;
    font-weight: 900;
}
@media screen and (max-width : 1160px) {
    ul {
        position: static;
        display: none;
        cursor: pointer;
    }
    li {
        margin-bottom: 1px;
    }
    ul li, li a {
        width: 100%;
    }
    a.clickable {
        display: block;
    }
    a.clickable:focus + ul {
        display: block;
    }
    .login {
        top: 0;
        width: 150px;
    }
}

这一直困扰着我,所以有没有人有任何想法我怎么能这样做?

感谢。

1 个答案:

答案 0 :(得分:0)

max-width:1160px就是问题所在。删除它,导航不会消失。

  @media screen and (max-width : 1160px) {

编辑:你可以做这样的事情example。我认为代码有点不那么厚实且易于编辑。希望它有所帮助。