Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,当我去查看我的网站时,我的菜单的移动视图仍在显示。我想让它恢复正常。768px之后;
我已经看过每一个地方都可以找出为什么它会那样做。
http://codepen.io/mwbcomputers/pen/jvpcq
您display: none;的媒体查询中有1024
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; }