Skip to content

Instantly share code, notes, and snippets.

@charisTheo
Created October 28, 2018 11:04
Show Gist options
  • Select an option

  • Save charisTheo/e16df59cf1d00ffc5e587466b971f12b to your computer and use it in GitHub Desktop.

Select an option

Save charisTheo/e16df59cf1d00ffc5e587466b971f12b to your computer and use it in GitHub Desktop.
CSS Media Queries
/* Extra small devices and above */
@media only screen and (min-width: 319px) {
/* content; */
}
/* Small devices and above */
@media only screen and (min-width: 479px) {
/* content; */
}
/* Tablet devices and above */
@media only screen and (min-width: 767px) {
/* content; */
}
/* Desktop devices and above */
@media only screen and (min-width: 959px) {
/* content; */
}
/* Wide Desktop devices */
@media only screen and (min-width: 1279px) {
/* content; */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment