Created
March 25, 2013 09:58
-
-
Save otkrsk/5236097 to your computer and use it in GitHub Desktop.
Remove certain DIVs when viewing on a mobile device.
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
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) { | |
| .qrcode widget { | |
| display: none | |
| } | |
| @media screen and (min-width: 0px) and (max-width: 400px) { | |
| #my-content { display: block; } /* show it on small screens */ | |
| } | |
| @media screen and (min-width: 401px) and (max-width: 1024px) { | |
| #my-content { display: none; } /* hide it elsewhere */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment