Skip to content

Instantly share code, notes, and snippets.

@davidperezgar
Last active November 9, 2015 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidperezgar/61b6906610232a0535ba to your computer and use it in GitHub Desktop.
Save davidperezgar/61b6906610232a0535ba to your computer and use it in GitHub Desktop.
Media Query Bootstrap
/*Media Queries*/
@media only screen and (min-width: 801px) and (max-width: 980px) {
}
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
}
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
}
@media only screen and (max-device-width: 480px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment