Skip to content

Instantly share code, notes, and snippets.

@otkrsk
Created March 25, 2013 09:58
Show Gist options
  • Save otkrsk/5236097 to your computer and use it in GitHub Desktop.
Save otkrsk/5236097 to your computer and use it in GitHub Desktop.
Remove certain DIVs when viewing on a mobile device.
@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