当我在手机上刷新我的网站时,我的响应式设计(菜单栏)无效。不工作就像消失一样......它刚刚消失了。 只有菜单栏。
所以这是我的媒体查询代码:
@media all and (max-width: 800px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min-resolution: 192dpi) and (max-width: 1024px),
only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
#cssmenu {
background: black;
}
}
也许我应该添加JavaScript? 帮助!
答案 0 :(得分:0)
您的css代码中第224行显示无。删除它,你应该是好的。
#cssmenu > ul {
display: none;
}