Skip to content

Instantly share code, notes, and snippets.

@ar7n
Last active August 29, 2015 14:24
Show Gist options
  • Save ar7n/ba522567ccad8ecca7e7 to your computer and use it in GitHub Desktop.
Save ar7n/ba522567ccad8ecca7e7 to your computer and use it in GitHub Desktop.
Bootstrap media queries
@media(max-width:767px){} // xs
@media(min-width:768px) and (max-width:991px){} // sm
@media(min-width:992px) and (max-width:1199px){} // md
@media(min-width:1200px){} // lg
@media(max-width:991px){} // xs - sm
@media(max-width:1199px){} // xs - md
@media(min-width:768px) and (max-width:1199px){} // sm - md
@media(min-width:768px){} // sm - lg
@media(min-width:992px){} // md - lg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment