Skip to content

Instantly share code, notes, and snippets.

@Sarahhoof
Last active November 25, 2015 08:58
Show Gist options
  • Save Sarahhoof/7ebfe2ee2fe110ff1ccb to your computer and use it in GitHub Desktop.
Save Sarahhoof/7ebfe2ee2fe110ff1ccb to your computer and use it in GitHub Desktop.
Hide <div> in Mobile
//medium screen sizes
@media (min-width:992px) {
.desktop-only {
display:block !important;
}
}
//small screen sizes
@media (max-width: 991px) {
.mobile-only {
display:block !important;
}
.desktop-only {
display:none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment