0

您好,当我去查看我的网站时,我的菜单的移动视图仍在显示。我想让它恢复正常。768px之后;

我已经看过每一个地方都可以找出为什么它会那样做。

http://codepen.io/mwbcomputers/pen/jvpcq

4

1 回答 1

0

display: none;的媒体查询中有1024

@media only screen and (max-width: 1024px) {
#container {
width: 90%;
margin-left: auto;
margin-right: auto;
}

.nav {  
display: none;
}

// more css

从媒体查询中删除以下代码

.nav {  
display: none;
}
于 2013-08-25T15:24:27.833 回答