Skip to content

Instantly share code, notes, and snippets.

@lizardking8610
Created June 3, 2017 03:32
Show Gist options
  • Select an option

  • Save lizardking8610/3adf0ecfcdea02b7e6851fa29f7d6529 to your computer and use it in GitHub Desktop.

Select an option

Save lizardking8610/3adf0ecfcdea02b7e6851fa29f7d6529 to your computer and use it in GitHub Desktop.
Mobile Hide and Mobile Show
.mobile-hide {
visibility: hidden;
clip: rect(0px, 0px, 0px, 0px);
position: absolute;
display: none;
}
@media only screen and (min-width: 800px) {
.mobile-hide {
visibility: visible;
position: relative;
display: inherit;
}
.mobile-show {
visibility: hidden;
clip: rect(0px, 0px, 0px, 0px);
position: absolute;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment