Last active
December 9, 2016 14:53
-
-
Save johannlilly/857537c7bd859132bffb4f55b1c2f177 to your computer and use it in GitHub Desktop.
Bootstrap 4 Grid System Breakpoints CSS Media Query Template
This file contains 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
/* Bootstrap 4 Grid System Breakpoints CSS Media Query Template | |
* v. 1.00.00 | |
* Note: breakpoints according to bootstrap gridlines and common phone screen CSS pixels according to Google's Chrome inspector | |
* Arranged to create a hierarchical priority towards more specific queries | |
* Licensed under the MIT/X11 License (http://opensource.org/licenses/MIT) */ | |
@media screen and (max-width:1199px){} | |
@media screen and (max-width:991px){} | |
@media screen and (max-width:767px) {} | |
/* xs */ | |
@media screen and (max-width:575px){} | |
@media screen and (max-width:320px){} | |
@media screen and (min-width:321px) and (max-width:374px){} | |
@media screen and (min-width:375px) and (max-width:413px){} | |
@media screen and (min-width:414px) and (max-width:479px){} | |
@media screen and (min-width:480px) and (max-width:575px){} | |
/* sm */ | |
@media screen and (min-width:576px) and (max-width:767px) {} | |
@media screen and (min-width:576px) and (max-width:599px){} | |
@media screen and (min-width:600px) and (max-width:767px){} | |
/* md */ | |
@media screen and (min-width:768px) and (max-width:991px){} | |
@media screen and (min-width:768px) and (max-width:799px){} | |
@media screen and (min-width:800px) and (max-width:991px){} | |
/* lg */ | |
@media screen and (min-width:992px) and (max-width:1199px){} | |
@media screen and (min-width:992px) and (max-width:1024px){} | |
@media screen and (min-width:1025px) and (max-width:1199px){} | |
/* xl */ | |
@media screen and (min-width:1200px){} | |
@media screen and (min-width:992px){} | |
@media screen and (min-width:768px){} | |
@media screen and (min-width:576px){} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment