css - Hide menu list on mobile screen -


to hide menu bar on mobile screen used:

@media (min-width:320px){     menu{display:none;} }  @media (min-width:481px){     menu{display:none;}  } 

but lead disable menu on desktops too.
website whiskersjersey.co.uk

you should use @media (max-width:481px) {menu{display:none;}} instead of min-widthif want menu bar hide on mobile screen


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -