Skip to content

Instantly share code, notes, and snippets.

@CreatiCoding
Created August 27, 2020 15:03
Show Gist options
  • Select an option

  • Save CreatiCoding/ff012a389344c340a7c944fe3f6a1cbd to your computer and use it in GitHub Desktop.

Select an option

Save CreatiCoding/ff012a389344c340a7c944fe3f6a1cbd to your computer and use it in GitHub Desktop.
bootstrap media query
/* Large desktops and laptops */
@media (min-width: 1200px) {
}
/* 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