Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jonathanjd/ba6a9c6efe869f46f4f71489c7ff48ac to your computer and use it in GitHub Desktop.

Select an option

Save jonathanjd/ba6a9c6efe869f46f4f71489c7ff48ac to your computer and use it in GitHub Desktop.
Media Query Testing
// Large Devices
@media (min-width:1200px) {
#home-heading {
h3 {
color: blue;
}
}
}
//Medium Devices
@media (min-width: 992px) and (max-width: 1199px) {
#home-heading {
h3 {
color: yellow;
}
}
}
//Small Devices
@media (min-width: 768px) and (max-width: 991px) {
#home-heading {
h3 {
color: green;
}
}
}
// Extra Small
@media (max-width:767px) {
#home-heading {
h3 {
color: red;
}
}
}
// Extra Small
@media (max-width:480px) {
#home-heading {
h3 {
color: pink;
}
}
}
// Extra Small
@media (max-width:320px) {
#home-heading {
h3 {
color: purple;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment