Skip to content

Instantly share code, notes, and snippets.

@tocsoft
Created March 15, 2017 08:55
Show Gist options
  • Select an option

  • Save tocsoft/1dd979516e19a91c5f67a9494cd7bd92 to your computer and use it in GitHub Desktop.

Select an option

Save tocsoft/1dd979516e19a91c5f67a9494cd7bd92 to your computer and use it in GitHub Desktop.
Hide element on desktop
// when window width > 600px then #menu will be hidden
@media screen and (min-width: 600px) {
#menu{
visibility: hidden;
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment