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
Post a Comment