Skip to content

Instantly share code, notes, and snippets.

@agusputra
Last active November 3, 2019 09:34
Show Gist options
  • Select an option

  • Save agusputra/e2c111f6392a53a7082c2b304b5fa8b4 to your computer and use it in GitHub Desktop.

Select an option

Save agusputra/e2c111f6392a53a7082c2b304b5fa8b4 to your computer and use it in GitHub Desktop.
Bootstrap Grid System
/**/
/* Min Width */
/**/
@media (min-width: 0) {
}
@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
}
/**/
/* Max Width */
/**/
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}
/**/
/* Min Width and Max Width */
/**/
@media (min-width: 576px) and (max-width: 767px) {
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment