Last active
July 17, 2019 11:07
-
-
Save AmrMekkawy/85828d68065ab732d22df206d12a211b to your computer and use it in GitHub Desktop.
Bootstrap standard media queries
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
/* Extra Small: Portrait phones and smaller */ | |
@media (max-width: 480px) { | |
} | |
/* Extra Small: Landscape phones and portrait tablets */ | |
@media (max-width: 767px) { | |
} | |
/* Small: Portrait tablets and small desktops */ | |
@media (min-width: 768px) and (max-width: 991px) { | |
} | |
/* Medium: Landscape tablets and medium desktops */ | |
@media (min-width: 992px) and (max-width: 1199px) { | |
} | |
/* Large: Large desktops and laptops */ | |
@media (min-width: 1200px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment