문제

I have a problem with this so the page is less than 900 px does not hide nav ul li. Code: http://codepen.io/anon/pen/qExAG/ Please help. Thanks

도움이 되었습니까?

해결책

@media (max-width: 900px) {
  #menu {display: none;}
}

Do not put ; after px for media queries (line 184 in your CSS code).

@media (max-width: 900px;) //not works
@media (max-width: 900px) //works

DEMO: http://codepen.io/anon/pen/wlpIj/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top