固定菜单 - >媒体屏幕css无法正常工作

时间:2014-08-05 09:35:23

标签: html css

我有固定的菜单。我将如果浏览器大小很小,菜单得到-130px ...因为不工作?

#nav {
    left: -20px;
    list-style: none;
    margin: 0;
    position: fixed;
    top:0;
    margin-top:415px;
    z-index:99;
}
@media screen and (max-width: 600px){
#nav {
    left: -130px;
    list-style: none;
    margin: 0;
    position: fixed;
    top:0;
    margin-top:415px;
    z-index:99;
}
}

2 个答案:

答案 0 :(得分:1)

试试这段代码

@media screen and (max-width: 600px){
#nav {
    display:none;
}
}

答案 1 :(得分:0)

你试过这个吗?

@media screen and (min-width: 601px){
 #nav {
    left: -20px;
    list-style: none;
    margin: 0;
    position: fixed;
    top:0;
    margin-top:415px;
    z-index:99;
 }
}
@media screen and (max-width: 600px){
 #nav {
    left: -130px;
    list-style: none;
    margin: 0;
    position: fixed;
    top:0;
    margin-top:415px;
    z-index:99;
 }
}