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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -