Last active
November 25, 2015 08:58
-
-
Save Sarahhoof/7ebfe2ee2fe110ff1ccb to your computer and use it in GitHub Desktop.
Hide <div> in Mobile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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