Skip to content

Instantly share code, notes, and snippets.

@Irfan-Ansari
Created October 16, 2015 14:03
Show Gist options
  • Save Irfan-Ansari/04b3d54104c2bb00bfa2 to your computer and use it in GitHub Desktop.
Save Irfan-Ansari/04b3d54104c2bb00bfa2 to your computer and use it in GitHub Desktop.
Bootstrap Responsive Media Queries
/* Media Quries for Responsivness*/
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
}
/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
}
/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
}
/* Portrait phones and smaller */
@media (max-width: 480px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment