Created
October 10, 2019 07:55
-
-
Save skdblog1999/fb1f8d543bc40913b9af0311918f6cf1 to your computer and use it in GitHub Desktop.
Bootstrap Css 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
| /* xLarge Devices col-xl */ | |
| @media (min-width: 1200px) { | |
| } | |
| /* Large Devices col-lg */ | |
| @media (min-width: 992px) and (max-width: 1200px) { | |
| } | |
| /* Medium Devices col-md */ | |
| @media (min-width: 768px) and (max-width: 992px) { | |
| } | |
| /* Small Devices col-sm */ | |
| @media (min-width: 576px) and (max-width: 768px) { | |
| } | |
| /* Extra Small Devices col */ | |
| @media (max-width: 576px) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment